-- MySQL dump 10.13  Distrib 5.6.51, for Linux (x86_64)
--
-- Host: localhost    Database: dev34_wp453
-- ------------------------------------------------------
-- Server version	5.6.51

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

--
-- Table structure for table `wpiy_actionscheduler_actions`
--

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

--
-- Dumping data for table `wpiy_actionscheduler_actions`
--

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

--
-- Table structure for table `wpiy_actionscheduler_claims`
--

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

--
-- Dumping data for table `wpiy_actionscheduler_claims`
--

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

--
-- Table structure for table `wpiy_actionscheduler_groups`
--

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

--
-- Dumping data for table `wpiy_actionscheduler_groups`
--

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

--
-- Table structure for table `wpiy_actionscheduler_logs`
--

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

--
-- Dumping data for table `wpiy_actionscheduler_logs`
--

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

--
-- Table structure for table `wpiy_commentmeta`
--

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

--
-- Dumping data for table `wpiy_commentmeta`
--

LOCK TABLES `wpiy_commentmeta` WRITE;
/*!40000 ALTER TABLE `wpiy_commentmeta` DISABLE KEYS */;
INSERT INTO `wpiy_commentmeta` VALUES (1,15,'rating','5'),(2,15,'verified','0'),(3,16,'rating','5'),(4,16,'verified','0');
/*!40000 ALTER TABLE `wpiy_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_comments`
--

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

--
-- Dumping data for table `wpiy_comments`
--

LOCK TABLES `wpiy_comments` WRITE;
/*!40000 ALTER TABLE `wpiy_comments` DISABLE KEYS */;
INSERT INTO `wpiy_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-04-03 20:14:22','2021-04-03 20:14:22','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0),(2,156,'Riva Collins','admin2@gmail.com','','::1','2019-11-09 02:07:50','2019-11-09 02:07:50','It’s no secret that the digital industry is booming. From exciting startups to need ghor \nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(3,156,'Obila Doe','admin3@gmail.com','','::1','2019-11-09 02:08:56','2019-11-09 02:08:56','It’s no secret that the digital industry is booming. From exciting startups to need ghor hmiu\nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(4,159,'Riva Collins','admin2@gmail.com','','::1','2019-11-09 02:07:47','2019-11-09 02:07:47','It’s no secret that the digital industry is booming. From exciting startups to need ghor \nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(5,159,'Obila Doe','admin3@gmail.com','','::1','2019-11-09 02:08:58','2019-11-09 02:08:58','It’s no secret that the digital industry is booming. From exciting startups to need ghor hmiu\nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(6,161,'Riva Collins','admin2@gmail.com','','::1','2019-11-09 02:07:44','2019-11-09 02:07:44','It’s no secret that the digital industry is booming. From exciting startups to need ghor \nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(7,161,'Obila Doe','admin3@gmail.com','','::1','2019-11-09 02:09:00','2019-11-09 02:09:00','It’s no secret that the digital industry is booming. From exciting startups to need ghor hmiu\nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(8,161,'Riva Collins','admin2@gmail.com','','::1','2019-11-09 02:09:34','2019-11-09 02:09:34','It’s no secret that the digital industry is booming. From exciting startups to need ghor hmiu global and brands, companies are reaching out.',0,'1','','comment',7,0),(9,164,'Riva Collins','admin2@gmail.com','','::1','2019-11-09 02:07:40','2019-11-09 02:07:40','It’s no secret that the digital industry is booming. From exciting startups to need ghor \nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(10,164,'Obila Doe','admin3@gmail.com','','::1','2019-11-09 02:09:03','2019-11-09 02:09:03','It’s no secret that the digital industry is booming. From exciting startups to need ghor hmiu\nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(11,166,'Riva Collins','admin2@gmail.com','','::1','2019-11-09 02:07:37','2019-11-09 02:07:37','It’s no secret that the digital industry is booming. From exciting startups to need ghor \nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(12,166,'Obila Doe','admin3@gmail.com','','::1','2019-11-09 02:09:06','2019-11-09 02:09:06','It’s no secret that the digital industry is booming. From exciting startups to need ghor hmiu\nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(13,169,'Riva Collins','admin2@gmail.com','','::1','2019-11-09 02:07:54','2019-11-09 02:07:54','It’s no secret that the digital industry is booming. From exciting startups to need ghor \nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(14,169,'Obila Doe','admin3@gmail.com','','::1','2019-11-09 02:08:52','2019-11-09 02:08:52','It’s no secret that the digital industry is booming. From exciting startups to need ghor hmiu\nglobal and brands, companies are reaching out.',0,'1','','comment',0,0),(15,778,'Riva Collins','admin2@gmail.com','','::1','2019-11-18 15:28:24','2019-11-18 15:28:24','Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore et dolore sedomagna aliqua.  Lorem Ipsum has been rode.',0,'1','','review',0,0),(16,778,'Obila Doe','admin3@gmail.com','','::1','2019-11-18 15:29:08','2019-11-18 15:29:08','Lorem ipsum dolor sit amet consectetur adipiscing elit sed do eius\nmod tempor incididunt ut labore et dolore.',0,'1','','review',0,0);
/*!40000 ALTER TABLE `wpiy_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_links`
--

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

--
-- Dumping data for table `wpiy_links`
--

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

--
-- Table structure for table `wpiy_newsletter`
--

DROP TABLE IF EXISTS `wpiy_newsletter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_newsletter` (
  `name` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `token` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `language` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `status` varchar(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'S',
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `profile` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated` int(11) NOT NULL DEFAULT '0',
  `last_activity` int(11) NOT NULL DEFAULT '0',
  `followup_step` tinyint(4) NOT NULL DEFAULT '0',
  `followup_time` bigint(20) NOT NULL DEFAULT '0',
  `followup` tinyint(4) NOT NULL DEFAULT '0',
  `surname` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sex` char(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'n',
  `feed_time` bigint(20) NOT NULL DEFAULT '0',
  `feed` tinyint(4) NOT NULL DEFAULT '0',
  `referrer` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `ip` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `wp_user_id` int(11) NOT NULL DEFAULT '0',
  `http_referer` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `geo` tinyint(4) NOT NULL DEFAULT '0',
  `country` varchar(4) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `region` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `bounce_type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `bounce_time` int(11) NOT NULL DEFAULT '0',
  `unsub_email_id` int(11) NOT NULL DEFAULT '0',
  `unsub_time` int(11) NOT NULL DEFAULT '0',
  `list_1` tinyint(4) NOT NULL DEFAULT '0',
  `list_2` tinyint(4) NOT NULL DEFAULT '0',
  `list_3` tinyint(4) NOT NULL DEFAULT '0',
  `list_4` tinyint(4) NOT NULL DEFAULT '0',
  `list_5` tinyint(4) NOT NULL DEFAULT '0',
  `list_6` tinyint(4) NOT NULL DEFAULT '0',
  `list_7` tinyint(4) NOT NULL DEFAULT '0',
  `list_8` tinyint(4) NOT NULL DEFAULT '0',
  `list_9` tinyint(4) NOT NULL DEFAULT '0',
  `list_10` tinyint(4) NOT NULL DEFAULT '0',
  `list_11` tinyint(4) NOT NULL DEFAULT '0',
  `list_12` tinyint(4) NOT NULL DEFAULT '0',
  `list_13` tinyint(4) NOT NULL DEFAULT '0',
  `list_14` tinyint(4) NOT NULL DEFAULT '0',
  `list_15` tinyint(4) NOT NULL DEFAULT '0',
  `list_16` tinyint(4) NOT NULL DEFAULT '0',
  `list_17` tinyint(4) NOT NULL DEFAULT '0',
  `list_18` tinyint(4) NOT NULL DEFAULT '0',
  `list_19` tinyint(4) NOT NULL DEFAULT '0',
  `list_20` tinyint(4) NOT NULL DEFAULT '0',
  `list_21` tinyint(4) NOT NULL DEFAULT '0',
  `list_22` tinyint(4) NOT NULL DEFAULT '0',
  `list_23` tinyint(4) NOT NULL DEFAULT '0',
  `list_24` tinyint(4) NOT NULL DEFAULT '0',
  `list_25` tinyint(4) NOT NULL DEFAULT '0',
  `list_26` tinyint(4) NOT NULL DEFAULT '0',
  `list_27` tinyint(4) NOT NULL DEFAULT '0',
  `list_28` tinyint(4) NOT NULL DEFAULT '0',
  `list_29` tinyint(4) NOT NULL DEFAULT '0',
  `list_30` tinyint(4) NOT NULL DEFAULT '0',
  `list_31` tinyint(4) NOT NULL DEFAULT '0',
  `list_32` tinyint(4) NOT NULL DEFAULT '0',
  `list_33` tinyint(4) NOT NULL DEFAULT '0',
  `list_34` tinyint(4) NOT NULL DEFAULT '0',
  `list_35` tinyint(4) NOT NULL DEFAULT '0',
  `list_36` tinyint(4) NOT NULL DEFAULT '0',
  `list_37` tinyint(4) NOT NULL DEFAULT '0',
  `list_38` tinyint(4) NOT NULL DEFAULT '0',
  `list_39` tinyint(4) NOT NULL DEFAULT '0',
  `list_40` tinyint(4) NOT NULL DEFAULT '0',
  `profile_1` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_2` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_3` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_4` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_5` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_6` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_7` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_8` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_9` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_10` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_11` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_12` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_13` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_14` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_15` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_16` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_17` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_18` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_19` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `profile_20` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `test` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`),
  KEY `wp_user_id` (`wp_user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_newsletter`
--

LOCK TABLES `wpiy_newsletter` WRITE;
/*!40000 ALTER TABLE `wpiy_newsletter` DISABLE KEYS */;
INSERT INTO `wpiy_newsletter` VALUES ('','howardbrown160@yahoo.com','558166430b','','C',1,NULL,'2021-04-05 18:35:55',1617647755,0,0,0,0,'','n',0,0,'','173.247.252.137',0,'',0,'','','','',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'','','','','','','','','','','','','','','','','','','','',0);
/*!40000 ALTER TABLE `wpiy_newsletter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_newsletter_emails`
--

DROP TABLE IF EXISTS `wpiy_newsletter_emails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_newsletter_emails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `language` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `subject` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `message` longtext COLLATE utf8mb4_unicode_520_ci,
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `status` enum('new','sending','sent','paused','error') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'new',
  `total` int(11) NOT NULL DEFAULT '0',
  `last_id` int(11) NOT NULL DEFAULT '0',
  `sent` int(11) NOT NULL DEFAULT '0',
  `track` int(11) NOT NULL DEFAULT '1',
  `list` int(11) NOT NULL DEFAULT '0',
  `type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `query` longtext COLLATE utf8mb4_unicode_520_ci,
  `editor` tinyint(4) NOT NULL DEFAULT '0',
  `sex` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `theme` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `message_text` longtext COLLATE utf8mb4_unicode_520_ci,
  `preferences` longtext COLLATE utf8mb4_unicode_520_ci,
  `send_on` int(11) NOT NULL DEFAULT '0',
  `token` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `options` longtext COLLATE utf8mb4_unicode_520_ci,
  `private` tinyint(1) NOT NULL DEFAULT '0',
  `click_count` int(10) unsigned NOT NULL DEFAULT '0',
  `version` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `open_count` int(10) unsigned NOT NULL DEFAULT '0',
  `unsub_count` int(10) unsigned NOT NULL DEFAULT '0',
  `error_count` int(10) unsigned NOT NULL DEFAULT '0',
  `stats_time` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_newsletter_emails`
--

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

--
-- Table structure for table `wpiy_newsletter_sent`
--

DROP TABLE IF EXISTS `wpiy_newsletter_sent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_newsletter_sent` (
  `email_id` int(10) unsigned NOT NULL DEFAULT '0',
  `user_id` int(10) unsigned NOT NULL DEFAULT '0',
  `status` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `open` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `time` int(10) unsigned NOT NULL DEFAULT '0',
  `error` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`email_id`,`user_id`),
  KEY `user_id` (`user_id`),
  KEY `email_id` (`email_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_newsletter_sent`
--

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

--
-- Table structure for table `wpiy_newsletter_stats`
--

DROP TABLE IF EXISTS `wpiy_newsletter_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_newsletter_stats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_id` int(11) NOT NULL DEFAULT '0',
  `email_id` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',
  `ip` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `email_id` (`email_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_newsletter_stats`
--

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

--
-- Table structure for table `wpiy_newsletter_user_logs`
--

DROP TABLE IF EXISTS `wpiy_newsletter_user_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_newsletter_user_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL DEFAULT '0',
  `ip` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `source` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `data` longtext COLLATE utf8mb4_unicode_520_ci,
  `created` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_newsletter_user_logs`
--

LOCK TABLES `wpiy_newsletter_user_logs` WRITE;
/*!40000 ALTER TABLE `wpiy_newsletter_user_logs` DISABLE KEYS */;
INSERT INTO `wpiy_newsletter_user_logs` VALUES (1,1,'173.247.252.137','subscribe','{\"status\":\"C\"}',1617647755);
/*!40000 ALTER TABLE `wpiy_newsletter_user_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_options`
--

DROP TABLE IF EXISTS `wpiy_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_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=MyISAM AUTO_INCREMENT=1493 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_options`
--

LOCK TABLES `wpiy_options` WRITE;
/*!40000 ALTER TABLE `wpiy_options` DISABLE KEYS */;
INSERT INTO `wpiy_options` VALUES (1,'siteurl','https://dm117.dev34.info','yes'),(2,'home','https://dm117.dev34.info','yes'),(3,'blogname','Dealers of the','yes'),(4,'blogdescription','Macabre','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','alex@inspirable.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','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:400:{s:12:\"portfolio/?$\";s:29:\"index.php?post_type=portfolio\";s:42:\"portfolio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:37:\"portfolio/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:29:\"portfolio/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=portfolio&paged=$matches[1]\";s:10:\"service/?$\";s:27:\"index.php?post_type=service\";s:40:\"service/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=service&feed=$matches[1]\";s:35:\"service/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=service&feed=$matches[1]\";s:27:\"service/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=service&paged=$matches[1]\";s:13:\"case-study/?$\";s:30:\"index.php?post_type=case-study\";s:43:\"case-study/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=case-study&feed=$matches[1]\";s:38:\"case-study/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=case-study&feed=$matches[1]\";s:30:\"case-study/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=case-study&paged=$matches[1]\";s:10:\"courses/?$\";s:27:\"index.php?post_type=courses\";s:40:\"courses/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=courses&feed=$matches[1]\";s:35:\"courses/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=courses&feed=$matches[1]\";s:27:\"courses/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=courses&paged=$matches[1]\";s:9:\"footer/?$\";s:26:\"index.php?post_type=footer\";s:39:\"footer/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=footer&feed=$matches[1]\";s:34:\"footer/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?post_type=footer&feed=$matches[1]\";s:26:\"footer/page/([0-9]{1,})/?$\";s:44:\"index.php?post_type=footer&paged=$matches[1]\";s:15:\"ct-mega-menu/?$\";s:32:\"index.php?post_type=ct-mega-menu\";s:45:\"ct-mega-menu/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=ct-mega-menu&feed=$matches[1]\";s:40:\"ct-mega-menu/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=ct-mega-menu&feed=$matches[1]\";s:32:\"ct-mega-menu/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=ct-mega-menu&paged=$matches[1]\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:50:\"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:45:\"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:35:\"portfolio/([^/]+)/wc-api(/(.*))?/?$\";s:50:\"index.php?portfolio=$matches[1]&wc-api=$matches[3]\";s:41:\"portfolio/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"portfolio/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"service/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"service/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"service/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"service/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"service/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"service/([^/]+)/embed/?$\";s:40:\"index.php?service=$matches[1]&embed=true\";s:28:\"service/([^/]+)/trackback/?$\";s:34:\"index.php?service=$matches[1]&tb=1\";s:48:\"service/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:43:\"service/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?service=$matches[1]&feed=$matches[2]\";s:36:\"service/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&paged=$matches[2]\";s:43:\"service/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?service=$matches[1]&cpage=$matches[2]\";s:33:\"service/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?service=$matches[1]&wc-api=$matches[3]\";s:39:\"service/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"service/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"service/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?service=$matches[1]&page=$matches[2]\";s:24:\"service/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"service/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"service/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"service/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"service/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"case-study/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"case-study/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"case-study/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"case-study/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"case-study/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"case-study/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"case-study/([^/]+)/embed/?$\";s:43:\"index.php?case-study=$matches[1]&embed=true\";s:31:\"case-study/([^/]+)/trackback/?$\";s:37:\"index.php?case-study=$matches[1]&tb=1\";s:51:\"case-study/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?case-study=$matches[1]&feed=$matches[2]\";s:46:\"case-study/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?case-study=$matches[1]&feed=$matches[2]\";s:39:\"case-study/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?case-study=$matches[1]&paged=$matches[2]\";s:46:\"case-study/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?case-study=$matches[1]&cpage=$matches[2]\";s:36:\"case-study/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?case-study=$matches[1]&wc-api=$matches[3]\";s:42:\"case-study/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"case-study/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:35:\"case-study/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?case-study=$matches[1]&page=$matches[2]\";s:27:\"case-study/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"case-study/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"case-study/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"case-study/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"case-study/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"case-study/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"courses/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"courses/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"courses/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"courses/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"courses/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"courses/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"courses/([^/]+)/embed/?$\";s:40:\"index.php?courses=$matches[1]&embed=true\";s:28:\"courses/([^/]+)/trackback/?$\";s:34:\"index.php?courses=$matches[1]&tb=1\";s:48:\"courses/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?courses=$matches[1]&feed=$matches[2]\";s:43:\"courses/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?courses=$matches[1]&feed=$matches[2]\";s:36:\"courses/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?courses=$matches[1]&paged=$matches[2]\";s:43:\"courses/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?courses=$matches[1]&cpage=$matches[2]\";s:33:\"courses/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?courses=$matches[1]&wc-api=$matches[3]\";s:39:\"courses/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"courses/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"courses/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?courses=$matches[1]&page=$matches[2]\";s:24:\"courses/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"courses/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"courses/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"courses/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"courses/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"courses/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"footer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"footer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"footer/([^/]+)/embed/?$\";s:39:\"index.php?footer=$matches[1]&embed=true\";s:27:\"footer/([^/]+)/trackback/?$\";s:33:\"index.php?footer=$matches[1]&tb=1\";s:47:\"footer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?footer=$matches[1]&feed=$matches[2]\";s:42:\"footer/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?footer=$matches[1]&feed=$matches[2]\";s:35:\"footer/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?footer=$matches[1]&paged=$matches[2]\";s:42:\"footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?footer=$matches[1]&cpage=$matches[2]\";s:32:\"footer/([^/]+)/wc-api(/(.*))?/?$\";s:47:\"index.php?footer=$matches[1]&wc-api=$matches[3]\";s:38:\"footer/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"footer/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:31:\"footer/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?footer=$matches[1]&page=$matches[2]\";s:23:\"footer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"footer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"footer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:47:\"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:57:\"service-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?service-category=$matches[1]&feed=$matches[2]\";s:52:\"service-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?service-category=$matches[1]&feed=$matches[2]\";s:33:\"service-category/([^/]+)/embed/?$\";s:49:\"index.php?service-category=$matches[1]&embed=true\";s:45:\"service-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?service-category=$matches[1]&paged=$matches[2]\";s:27:\"service-category/([^/]+)/?$\";s:38:\"index.php?service-category=$matches[1]\";s:60:\"case-study-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?case-study-category=$matches[1]&feed=$matches[2]\";s:55:\"case-study-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?case-study-category=$matches[1]&feed=$matches[2]\";s:36:\"case-study-category/([^/]+)/embed/?$\";s:52:\"index.php?case-study-category=$matches[1]&embed=true\";s:48:\"case-study-category/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?case-study-category=$matches[1]&paged=$matches[2]\";s:30:\"case-study-category/([^/]+)/?$\";s:41:\"index.php?case-study-category=$matches[1]\";s:40:\"ct-mega-menu/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"ct-mega-menu/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"ct-mega-menu/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"ct-mega-menu/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"ct-mega-menu/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"ct-mega-menu/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"ct-mega-menu/([^/]+)/embed/?$\";s:45:\"index.php?ct-mega-menu=$matches[1]&embed=true\";s:33:\"ct-mega-menu/([^/]+)/trackback/?$\";s:39:\"index.php?ct-mega-menu=$matches[1]&tb=1\";s:53:\"ct-mega-menu/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&feed=$matches[2]\";s:48:\"ct-mega-menu/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&feed=$matches[2]\";s:41:\"ct-mega-menu/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?ct-mega-menu=$matches[1]&paged=$matches[2]\";s:48:\"ct-mega-menu/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?ct-mega-menu=$matches[1]&cpage=$matches[2]\";s:38:\"ct-mega-menu/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?ct-mega-menu=$matches[1]&wc-api=$matches[3]\";s:44:\"ct-mega-menu/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"ct-mega-menu/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"ct-mega-menu/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?ct-mega-menu=$matches[1]&page=$matches[2]\";s:29:\"ct-mega-menu/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"ct-mega-menu/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"ct-mega-menu/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"ct-mega-menu/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"ct-mega-menu/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"ct-mega-menu/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:40:\"e-landing-page/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?e-landing-page=$matches[1]&wc-api=$matches[3]\";s:46:\"e-landing-page/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"e-landing-page/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"booked_appointments/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"booked_appointments/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"booked_appointments/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"booked_appointments/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"booked_appointments/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"booked_appointments/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"booked_appointments/([^/]+)/embed/?$\";s:52:\"index.php?booked_appointments=$matches[1]&embed=true\";s:40:\"booked_appointments/([^/]+)/trackback/?$\";s:46:\"index.php?booked_appointments=$matches[1]&tb=1\";s:48:\"booked_appointments/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?booked_appointments=$matches[1]&paged=$matches[2]\";s:55:\"booked_appointments/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?booked_appointments=$matches[1]&cpage=$matches[2]\";s:45:\"booked_appointments/([^/]+)/wc-api(/(.*))?/?$\";s:60:\"index.php?booked_appointments=$matches[1]&wc-api=$matches[3]\";s:51:\"booked_appointments/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:62:\"booked_appointments/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:44:\"booked_appointments/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?booked_appointments=$matches[1]&page=$matches[2]\";s:36:\"booked_appointments/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"booked_appointments/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"booked_appointments/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"booked_appointments/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"booked_appointments/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"booked_appointments/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"custom-calendar/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?booked_custom_calendars=$matches[1]&feed=$matches[2]\";s:51:\"custom-calendar/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?booked_custom_calendars=$matches[1]&feed=$matches[2]\";s:32:\"custom-calendar/([^/]+)/embed/?$\";s:56:\"index.php?booked_custom_calendars=$matches[1]&embed=true\";s:44:\"custom-calendar/([^/]+)/page/?([0-9]{1,})/?$\";s:63:\"index.php?booked_custom_calendars=$matches[1]&paged=$matches[2]\";s:26:\"custom-calendar/([^/]+)/?$\";s:45:\"index.php?booked_custom_calendars=$matches[1]\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:36:\"mc4wp-form/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?mc4wp-form=$matches[1]&wc-api=$matches[3]\";s:42:\"mc4wp-form/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:53:\"mc4wp-form/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s: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:38:\"index.php?&page_id=9&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:16:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:17:\"booked/booked.php\";i:2;s:35:\"case-theme-core/case-theme-core.php\";i:3;s:39:\"case-theme-import/case-theme-import.php\";i:4;s:35:\"case-theme-user/case-theme-user.php\";i:5;s:55:\"contact-form-7-multi-step/contact-form-7-multi-step.php\";i:6;s:36:\"contact-form-7/wp-contact-form-7.php\";i:7;s:23:\"elementor/elementor.php\";i:8;s:33:\"instagram-feed/instagram-feed.php\";i:9;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:10;s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";i:11;s:21:\"newsletter/plugin.php\";i:12;s:23:\"revslider/revslider.php\";i:13;s:27:\"woocommerce/woocommerce.php\";i:14;s:36:\"yith-woocommerce-quick-view/init.php\";i:15;s:34:\"yith-woocommerce-wishlist/init.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','consultio','yes'),(41,'stylesheet','consultio','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','49752','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:4:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:6:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:4;a:6:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:6:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:126:\"At vero eos et accusamus et iusto odio digni goikussimos ducimus qui to bonfo blanditiis praese. Ntium voluum deleniti atque. \";s:6:\"filter\";b:1;s:6:\"visual\";b:1;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','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:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','9','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','1633032862','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,'initial_db_version','49752','yes'),(99,'wpiy_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:117:{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:24:\"edit_booked_appointments\";b:1;s:21:\"manage_booked_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:20:\"booked_booking_agent\";a:2:{s:4:\"name\";s:13:\"Booking Agent\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:24:\"edit_booked_appointments\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:3:{s:5:\"title\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:4:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}i:3;a:5:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:4;a:5:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";i:3;s:13:\"media_image-1\";i:4;s:6:\"text-1\";i:5;s:19:\"getintouch_widget-1\";i:6;s:18:\"cs_social_widget-1\";}s:12:\"sidebar-blog\";a:9:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:12:\"categories-3\";i:4;s:17:\"ct_recent_posts-1\";i:5;s:10:\"archives-3\";i:6;s:15:\"media_gallery-1\";i:7;s:11:\"tag_cloud-1\";i:8;s:19:\"newsletter_widget-1\";}s:13:\"array_version\";i:3;s:12:\"sidebar-page\";a:7:{i:0;s:8:\"search-3\";i:1;s:12:\"categories-4\";i:2;s:17:\"ct_recent_posts-2\";i:3;s:10:\"archives-4\";i:4;s:15:\"media_gallery-2\";i:5;s:11:\"tag_cloud-2\";i:6;s:19:\"newsletter_widget-2\";}s:12:\"sidebar-shop\";a:4:{i:0;s:28:\"woocommerce_product_search-1\";i:1;s:32:\"woocommerce_product_categories-1\";i:2;s:26:\"woocommerce_price_filter-1\";i:3;s:22:\"woocommerce_products-1\";}}','yes'),(107,'cron','a:22:{i:1620520462;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1620520724;a:1:{s:10:\"newsletter\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"newsletter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1620521219;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1620522864;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1620523128;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1620523138;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1620526706;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1620548062;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1620548293;a:3:{s:27:\"check_plugin_updates-booked\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:21:\"sb_instagram_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:23:\"sb_instagram_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1620591262;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620591372;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620591373;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:1620591493;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:1620591516;a:2:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620591529;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620591589;a:1:{s:34:\"yith_wcwl_delete_expired_wishlists\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620602306;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620604800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620626400;a:2:{s:29:\"sb_instagram_feed_issue_email\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"sbi_notification_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1620726062;a:1:{s:23:\"sbi_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1621369166;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:2:{i:1;a:17:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:725;s:6:\"height\";i:195;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:50:\"https://demo.casethemes.net/consultio-immigration/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:5164;s:3:\"url\";s:90:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/logo-dark.png\";s:5:\"title\";s:0:\"\";s:8:\"el_class\";s:19:\"logo-hidden-sidebar\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:3:{i:1;a:8:{s:5:\"title\";s:7:\"Gallery\";s:3:\"ids\";a:6:{i:0;i:1552;i:1;i:1553;i:2;i:1554;i:3;i:1555;i:4;i:1556;i:5;i:1557;}s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:9:\"link_type\";s:4:\"file\";s:14:\"orderby_random\";b:1;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:8:{s:5:\"title\";s:7:\"Gallery\";s:3:\"ids\";a:6:{i:0;i:1553;i:1;i:1554;i:2;i:1552;i:3;i:1555;i:4;i:1556;i:5;i:1557;}s:7:\"columns\";i:3;s:4:\"size\";s:6:\"medium\";s:9:\"link_type\";s:4:\"file\";s:14:\"orderby_random\";b:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:3:{i:1;a:6:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;s:15:\"use_theme_style\";b:0;}i:2;a:6:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;s:15:\"use_theme_style\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1617481048;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:0:{}','yes'),(1069,'woocommerce_tracker_ua','a:2:{i:0;s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36\";i:1;s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:78.0) Gecko/20100101 Firefox/78.0\";}','yes'),(658,'product_option','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(1467,'_site_transient_timeout_theme_roots','1620521306','no'),(1468,'_site_transient_theme_roots','a:4:{s:9:\"consultio\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(1375,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1620517623;s:7:\"checked\";a:4:{s:9:\"consultio\";s:3:\"2.0\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.2\";}s:8:\"response\";a:1:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.3.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:2:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.0.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.7.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(1376,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1620517624;s:7:\"checked\";a:18:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:17:\"booked/booked.php\";s:3:\"2.3\";s:35:\"case-theme-core/case-theme-core.php\";s:5:\"1.0.5\";s:39:\"case-theme-import/case-theme-import.php\";s:5:\"1.0.1\";s:35:\"case-theme-user/case-theme-user.php\";s:5:\"1.0.0\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.4\";s:55:\"contact-form-7-multi-step/contact-form-7-multi-step.php\";s:5:\"2.5.5\";s:23:\"elementor/elementor.php\";s:5:\"3.1.4\";s:9:\"hello.php\";s:5:\"1.7.2\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:5:\"4.8.3\";s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";s:5:\"1.1.4\";s:21:\"newsletter/plugin.php\";s:5:\"7.0.9\";s:35:\"redux-framework/redux-framework.php\";s:6:\"4.1.24\";s:23:\"revslider/revslider.php\";s:5:\"6.4.6\";s:33:\"instagram-feed/instagram-feed.php\";s:3:\"2.9\";s:27:\"woocommerce/woocommerce.php\";s:5:\"5.1.0\";s:36:\"yith-woocommerce-quick-view/init.php\";s:5:\"1.5.1\";s:34:\"yith-woocommerce-wishlist/init.php\";s:6:\"3.0.20\";}s:8:\"response\";a:9:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.4.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{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.2.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.8.4\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:21:\"newsletter/plugin.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:6:\"plugin\";s:21:\"newsletter/plugin.php\";s:11:\"new_version\";s:5:\"7.1.4\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/newsletter/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/newsletter.7.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/newsletter/assets/icon-256x256.png?rev=1052028\";s:2:\"1x\";s:63:\"https://ps.w.org/newsletter/assets/icon-128x128.png?rev=1160467\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/newsletter/assets/banner-1544x500.png?rev=1052027\";s:2:\"1x\";s:65:\"https://ps.w.org/newsletter/assets/banner-772x250.png?rev=1052027\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:6:\"4.1.26\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/redux-framework.4.1.26.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-256x256.png?rev=2352112\";s:2:\"1x\";s:59:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=995554\";s:3:\"svg\";s:59:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=995554\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/redux-framework/assets/banner-1544x500.png?rev=2352114\";s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2352114\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"7.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:5:\"2.9.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/instagram-feed.2.9.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2137676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2137676\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"5.2.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:36:\"yith-woocommerce-quick-view/init.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"w.org/plugins/yith-woocommerce-quick-view\";s:4:\"slug\";s:27:\"yith-woocommerce-quick-view\";s:6:\"plugin\";s:36:\"yith-woocommerce-quick-view/init.php\";s:11:\"new_version\";s:5:\"1.6.1\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/yith-woocommerce-quick-view/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/yith-woocommerce-quick-view.1.6.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-quick-view/assets/icon-128x128.jpg?rev=1460911\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/yith-woocommerce-quick-view/assets/banner-1544x500.jpg?rev=1460911\";s:2:\"1x\";s:82:\"https://ps.w.org/yith-woocommerce-quick-view/assets/banner-772x250.jpg?rev=1460911\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:34:\"yith-woocommerce-wishlist/init.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:39:\"w.org/plugins/yith-woocommerce-wishlist\";s:4:\"slug\";s:25:\"yith-woocommerce-wishlist\";s:6:\"plugin\";s:34:\"yith-woocommerce-wishlist/init.php\";s:11:\"new_version\";s:6:\"3.0.21\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/yith-woocommerce-wishlist/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/yith-woocommerce-wishlist.3.0.21.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/yith-woocommerce-wishlist/assets/icon-128x128.jpg?rev=2215573\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-1544x500.jpg?rev=2209192\";s:2:\"1x\";s:80:\"https://ps.w.org/yith-woocommerce-wishlist/assets/banner-772x250.jpg?rev=2209192\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:39:\"w.org/plugins/meks-simple-flickr-widget\";s:4:\"slug\";s:25:\"meks-simple-flickr-widget\";s:6:\"plugin\";s:55:\"meks-simple-flickr-widget/meks-simple-flickr-widget.php\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/meks-simple-flickr-widget/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/meks-simple-flickr-widget.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/meks-simple-flickr-widget/assets/icon-256x256.png?rev=1522335\";s:2:\"1x\";s:78:\"https://ps.w.org/meks-simple-flickr-widget/assets/icon-128x128.png?rev=1522335\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/meks-simple-flickr-widget/assets/banner-772x250.jpg?rev=1927390\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(806,'woocommerce_tracker_last_send','1620142520','yes'),(135,'can_compress_scripts','1','no'),(905,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.1\";s:7:\"version\";s:5:\"5.7.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1620517622;s:15:\"version_checked\";s:5:\"5.7.1\";s:12:\"translations\";a:0:{}}','no'),(1082,'_transient_timeout_wc_low_stock_count','1622143537','no'),(1083,'_transient_wc_low_stock_count','0','no'),(1084,'_transient_timeout_wc_outofstock_count','1622143537','no'),(1085,'_transient_wc_outofstock_count','0','no'),(1412,'_transient_timeout_wc_onboarding_product_data','1620604229','no'),(1413,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 08 May 2021 23:50:29 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"11517\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-rq\";s:15:\"bur6 89 77 3162\";s:3:\"age\";s:2:\"17\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:4:\"body\";s:48082:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:48082:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:3:\"raw\";s:48719:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Sat, 08 May 2021 23:50:29 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 11517\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nContent-Encoding: gzip\r\nX-rq: bur6 89 77 3162\r\nAge: 17\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Sat, 08 May 2021 23:50:29 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"11517\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:4:\"x-rq\";a:1:{i:0;s:15:\"bur6 89 77 3162\";}s:3:\"age\";a:1:{i:0;s:2:\"17\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(1382,'_transient_timeout_elementor_remote_info_api_data_3.1.4','1620560906','no'),(1383,'_transient_elementor_remote_info_api_data_3.1.4','a:4:{s:9:\"timestamp\";s:10:\"1620515555\";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:60:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:5;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:6;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:16;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:19;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:20;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:21;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:23;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:24;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:25;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:27;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:28;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:29;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:30;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:31;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:32;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:33;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:34;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:35;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:36;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:37;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:38;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:39;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:40;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:41;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:42;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:43;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:44;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:45;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:46;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:47;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:48;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:49;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:51;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.2.1\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}}','no'),(1384,'_transient_timeout_feed_6b646ba1685199dbb7a80f9d24fbfe04','1620560907','no'),(1385,'_transient_feed_6b646ba1685199dbb7a80f9d24fbfe04','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\";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:51:\"\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:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"YITH Updates RSS\";s:7:\"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:21:\"https://yithemes.com/\";s: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:16:\"YITH Updates RSS\";s: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:4:\"item\";a:20:{i:0;a:6:{s:4:\"data\";s:12:\"\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:44:\"YITH WooCommerce Share for Discounts - 1.7.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:88:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-share-for-discounts.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-woocommerce-share-for-discounts/\";s: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:29:\"Sat, 08 May 2021 00:00:00 GMT\";s: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:99:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n	<li>Update: YITH plugin framework</li>\n</ul>\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:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:12:\"\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:52:\"YITH WooCommerce Frequently Bought Together - 1.8.10\";s:7:\"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:86:\"https://yithemes.com/wp-content/uploads/2015/05/yith-woocommerce-frequently-bought.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://yithemes.com/themes/plugins/yith-woocommerce-frequently-bought-together/\";s: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:29:\"Fri, 07 May 2021 00:00:00 GMT\";s: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:118:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n            <li>Update: YITH plugin framework</li>\n        </ul>\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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:12:\"\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:54:\"YITH WooCommerce Dynamic Pricing and Discounts - 2.1.7\";s:7:\"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:98:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-dynamic-pricing-and-discounts.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-woocommerce-dynamic-pricing-and-discounts/\";s: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:29:\"Fri, 07 May 2021 00:00:00 GMT\";s: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:160:\"\n	\n	<ul><li>New: Support for WooCommerce 5.3</li>\n		<li>Update: YITH plugin framework</li>\n		<li>Fix: Issues with cart conditions on cart rules</li>\n		</ul>\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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:12:\"\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:38:\"YITH WooCommerce Best Sellers - 1.1.28\";s:7:\"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:81:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-best-sellers.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-woocommerce-best-sellers/\";s: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:29:\"Thu, 06 May 2021 00:00:00 GMT\";s: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:150:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n				<li>Update: YITH plugin framework</li>\n				<li>Update: language files</li>\n            </ul>\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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:12:\"\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:46:\"YITH WooCommerce Bulk Product Editing - 1.2.33\";s:7:\"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:89:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-bulk-product-editing.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://yithemes.com/themes/plugins/yith-woocommerce-bulk-product-editing/\";s: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:29:\"Thu, 06 May 2021 00:00:00 GMT\";s: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:164:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n            <li>Update: YITH plugin framework</li>\n            <li>Update: language files</li>\n          </ul>\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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:12:\"\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:49:\"YITH Product Size Charts for WooCommerce - 1.1.29\";s:7:\"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:92:\"https://yithemes.com/wp-content/uploads/2019/05/yith-product-size-charts-for-woocommerce.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://yithemes.com/themes/plugins/yith-product-size-charts-for-woocommerce/\";s: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:29:\"Thu, 06 May 2021 00:00:00 GMT\";s: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:162:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n            <li>Update: YITH plugin framework</li>\n            <li>Update: language files</li>\n        </ul>\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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:12:\"\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:44:\"YITH Easy Order Page for WooCommerce - 1.0.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://yithemes.com/wp-content/uploads/2021/02/easy-order.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-easy-order-page-for-woocommerce/\";s: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:29:\"Thu, 06 May 2021 00:00:00 GMT\";s: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:197:\"\n	\n	<ul><li>Update: YITH plugin framework</li>\n            <li>Update: language files</li>\n            <li>Tweak: added prefix for IDs of Gutenberg block and Elementor widget</li>\n        </ul>\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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:12:\"\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:32:\"YITH WooCommerce Compare - 2.5.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-compare.svg\";s:7:\"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:61:\"https://yithemes.com/themes/plugins/yith-woocommerce-compare/\";s: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:29:\"Thu, 06 May 2021 00:00:00 GMT\";s: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:118:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n            <li>Update: YITH plugin framework</li>\n        </ul>\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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:12:\"\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:39:\"YITH WooCommerce Delivery Date - 2.1.30\";s:7:\"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:82:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-delivery-date.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://yithemes.com/themes/plugins/yith-woocommerce-delivery-date/\";s: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:29:\"Thu, 06 May 2021 00:00:00 GMT\";s: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:103:\"\n	\n	<ul><li>New: Support for WooCommerce 5.3</li>\n			<li>Update: YITH plugin framework</li>\n		</ul>\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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:12:\"\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:50:\"YITH Custom Thank You Page for WooCommerce - 1.3.6\";s:7:\"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:94:\"https://yithemes.com/wp-content/uploads/2019/05/yith-custom-thank-you-page-for-woocommerce.svg\";s:7:\"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:79:\"https://yithemes.com/themes/plugins/yith-custom-thank-you-page-for-woocommerce/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:105:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n				<li>Update: YITH Plugin Framework</li>\n			</ul>\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:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:12:\"\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:37:\"YITH FAQ Plugin for WordPress - 1.2.5\";s:7:\"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:81:\"https://yithemes.com/wp-content/uploads/2019/05/yith-faq-plugin-for-wordpress.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-faq-plugin-for-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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:\"\n	\n	<ul><li>Update: YITH plugin framework</li>\n			</ul>\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:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:12:\"\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:44:\"YITH PayPal Payouts for WooCommerce - 1.0.25\";s:7:\"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:87:\"https://yithemes.com/wp-content/uploads/2019/05/yith-paypal-payouts-for-woocommerce.svg\";s:7:\"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:72:\"https://yithemes.com/themes/plugins/yith-paypal-payouts-for-woocommerce/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:102:\"\n	\n	<ul><li>New: Support for WooCommerce 5.3</li>\n			<li>Update:YITH plugin framework</li>\n		</ul>\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:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:12:\"\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:33:\"YITH WooCommerce Surveys - 1.2.14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-surveys.svg\";s:7:\"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:61:\"https://yithemes.com/themes/plugins/yith-woocommerce-surveys/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:118:\"\n	\n	<ul><li>New: Support for WooCommerce 5.3</li>\n            <li>Update: YITH plugin framework</li>\n        </ul>\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:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:12:\"\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:46:\"YITH WooCommerce Pending Order Survey - 1.0.27\";s:7:\"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:89:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-pending-order-survey.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://yithemes.com/themes/plugins/yith-woocommerce-pending-order-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:101:\"\n	\n	<ul><li>New: Support for WooCommerce 5.3</li>\n    <li>Update:YITH plugin framework</li>\n</ul>\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:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:12:\"\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:22:\"YITH Live Chat - 1.5.4\";s:7:\"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:66:\"https://yithemes.com/wp-content/uploads/2019/05/yith-live-chat.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://yithemes.com/themes/plugins/yith-live-chat/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:57:\"\n	\n	<ul><li>Update: YITH plugin framework</li>\n	</ul>\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:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:12:\"\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:37:\"YITH WooCommerce Subscription - 2.3.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-subscription.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-woocommerce-subscription/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:67:\"\n	\n	<ul><li>Fix: fixed issues with Gutenberg block</li>\n		</ul>\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:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:12:\"\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:44:\"YITH PayPal Payments for WooCommerce - 1.2.8\";s:7:\"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:67:\"https://yithemes.com/wp-content/uploads/2020/09/paypal-platform.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-paypal-payments-for-woocommerce/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:182:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n            <li>Update: YITH plugin framework</li>\n            <li>Tweak: refactoring frontend errors handler</li>\n        </ul>\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:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:12:\"\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:37:\"YITH WooCommerce Catalog Mode - 2.1.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:81:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-catalog-mode.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-woocommerce-catalog-mode/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:115:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n				 <li>Update: YITH plugin framework</li>\n            </ul>\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:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:12:\"\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:54:\"YITH Easy Login Register Popup for WooCommerce - 1.7.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://yithemes.com/wp-content/uploads/2019/11/easy-login.svg\";s:7:\"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://yithemes.com/themes/plugins/yith-easy-login-register-popup-for-woocommerce/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:118:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n            <li>Update: YITH plugin framework</li>\n        </ul>\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:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:12:\"\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:42:\"YITH Woocommerce Badge Management - 1.4.12\";s:7:\"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:85:\"https://yithemes.com/wp-content/uploads/2019/05/yith-woocommerce-badge-management.svg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://yithemes.com/themes/plugins/yith-woocommerce-badge-management/\";s: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:29:\"Wed, 05 May 2021 00:00:00 GMT\";s: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:162:\"\n	\n	<ul><li>New: support for WooCommerce 5.3</li>\n            <li>Update: YITH plugin framework</li>\n            <li>Update: language files</li>\n        </ul>\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: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:42:\"https://yithemes.com/latest-updates/feeds/\";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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:20:{s:4:\"date\";s:29:\"Sat, 08 May 2021 23:48:27 GMT\";s:12:\"content-type\";s:22:\"text/xml;charset=UTF-8\";s:10:\"set-cookie\";s:151:\"__cfduid=d168f1d552ac3931842a53f05e5f965cd1620517707; expires=Mon, 07-Jun-21 23:48:27 GMT; path=/; domain=.yithemes.com; HttpOnly; SameSite=Lax; Secure\";s:4:\"link\";s:252:\"</wp-content/themes/yithemes/assets/css/main.min.css?ver=3.8.35>; rel=preload; as=style,</wp-includes/js/jquery/jquery.js?ver=1.12.4-wp>; rel=\"preload\"; as=script,</wp-content/themes/yithemes/assets/js/scripts.min.js?ver=3.8.34>; rel=preload; as=script\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:14:\"x-kinsta-cache\";s:4:\"MISS\";s:19:\"x-edge-location-klb\";s:56:\"7SKuH0JDlSKBvbnEN5NRyTawc011e96635bbab85e6d5048cc7871bea\";s:13:\"cache-control\";s:13:\"max-age=10800\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:3:\"age\";s:4:\"4075\";s:13:\"cf-request-id\";s:32:\"09effaf5e60000eb7918b2c000000001\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:44:\"max-age=15552000; includeSubDomains; preload\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"64c694363d62eb79-LAX\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:70:\"h3-27=\":443\"; ma=86400, h3-28=\":443\"; ma=86400, h3-29=\":443\"; ma=86400\";}}s:5:\"build\";s:14:\"20201017055008\";}','no'),(1386,'_transient_timeout_feed_mod_6b646ba1685199dbb7a80f9d24fbfe04','1620560907','no'),(1387,'_transient_feed_mod_6b646ba1685199dbb7a80f9d24fbfe04','1620517707','no'),(1388,'_transient_timeout_feed_40a89299829082877949471eeb1c21e3','1620560907','no'),(1389,'_transient_feed_40a89299829082877949471eeb1c21e3','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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"YITH\";s:7:\"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:20:\"https://yithemes.com\";s: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:21:\"FREE WORDPRESS THEMES\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 May 2021 07:20:57 +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: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:74:\"https://yithemes.com/wp-content/uploads/2015/11/cropped-favicon4-65x65.png\";s: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:4:\"YITH\";s:7:\"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:20:\"https://yithemes.com\";s: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:59:\"\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:79:\"Level up your Store; prepare your WooCommerce store for international customers\";s:7:\"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://yithemes.com/blog/e-commerce/prepare-for-international-customers/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://yithemes.com/blog/e-commerce/prepare-for-international-customers/#respond\";s: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, 06 May 2021 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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Level up your store\";s:7:\"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:31:\"https://yithemes.com/?p=1188749\";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:318:\"Internationalize your store is a term often used in the context of making your store accessible to buyers from other countries and markets. In this Level up your store, we will take a broader look at what you need to do to prepare your WooCommerce store to attract customers from abroad. Research; how do you [&#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:13:\"Ronald Gijsel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://yithemes.com/blog/e-commerce/prepare-for-international-customers/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:59:\"\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:117:\"YITH Easy Order Page for WooCommerce: create product lists with a modern layout designed explicitly for mobile buyers\";s:7:\"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:72:\"https://yithemes.com/blog/yit-news/create-product-lists-easy-order-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://yithemes.com/blog/yit-news/create-product-lists-easy-order-page/#respond\";s: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, 05 May 2021 14:19: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1185211\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:339:\"It’s not a secret: the importance of mobile shopping has grown exponentially recently. We are now used to buying products or services through a smartphone. Sometimes this only takes a couple of minutes while drinking a coffee at the bar or queuing at the post office or the supermarket checkout. Purchasing from apps like those [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Ausilia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://yithemes.com/blog/yit-news/create-product-lists-easy-order-page/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:59:\"\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:97:\"Enable your store to sell in multiple currencies with the new YITH Multi Currency Switcher plugin\";s:7:\"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://yithemes.com/blog/yit-news/multi-currency-plugin-for-woocommerce/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://yithemes.com/blog/yit-news/multi-currency-plugin-for-woocommerce/#respond\";s: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, 04 May 2021 16:48: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1188842\";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:377:\"A couple of years ago we started a massive redesign of all our plugins to improve their performances, usability, appearance and functionalities. The exponential improvement of best-seller plugins like Gift Cards, Wishlist, Subscription, Request a Quote (and many more) has been challenging and rewarding at the same time, also thanks to the many enthusiastic feedback [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Ausilia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://yithemes.com/blog/yit-news/multi-currency-plugin-for-woocommerce/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:59:\"\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:57:\"WordCamp Centroamérica online 2021 – the first of many\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://yithemes.com/blog/events/wordcamp-centroamerica-online-2021/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://yithemes.com/blog/events/wordcamp-centroamerica-online-2021/#respond\";s: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, 23 Apr 2021 10:51: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:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1186651\";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:329:\"WordCamps have always been close to the hearts of all those interested in the WordPress world. About a year ago, these events had to switch to an online format.&#160; For this reason, we marked the 15th, 16th, and 17th of April in our calendar under the name: WordCamp Centroamérica Online. YITH had the opportunity to [&#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:13:\"taniagonzalez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://yithemes.com/blog/events/wordcamp-centroamerica-online-2021/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:59:\"\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:60:\"Meet Antonio, we consider him the Ferrari amongst developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://yithemes.com/blog/team/antonio-la-rocca/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://yithemes.com/blog/team/antonio-la-rocca/#respond\";s: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, 12 Apr 2021 10:44:24 +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:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH 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:31:\"https://yithemes.com/?p=1183866\";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:334:\"In the YITH family, each member is different and brings something to the team that complements it: joy, interest, ideas, creativity&#8230; But now it is the turn to talk about a person who is synonymous with tranquility, curiosity, and desire to learn, among other things: Antonio La Rocca. His friends know him as Zio Tony. [&#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:13:\"taniagonzalez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://yithemes.com/blog/team/antonio-la-rocca/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:62:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Five ways to reward your customers with Easter eggs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://yithemes.com/blog/yit-news/five-ways-to-reward-your-customers-with-easter-eggs/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://yithemes.com/blog/yit-news/five-ways-to-reward-your-customers-with-easter-eggs/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Mar 2021 11:07: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:2:{i:0;a:5:{s:4:\"data\";s:19:\"Level up your store\";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:9:\"YITH 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1182038\";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:318:\"Easter is a typical period on the eCommerce calendar whereby the store owner feels the need to do something unique and treat their customers. In this Level up your Store,’ we will be exploring five ways to treat your customers to something special. The term Easter Egg can be used physically and the way we [&#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:13:\"Ronald Gijsel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://yithemes.com/blog/yit-news/five-ways-to-reward-your-customers-with-easter-eggs/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:59:\"\n		\n		\n					\n		\n		\n		\n				\n		\n\n					\n		\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"How to add a request a quote button to all WooCommerce products?\";s:7:\"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://yithemes.com/blog/tutorials/how-to-add-a-request-a-quote-button-to-all-woocommerce-products/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://yithemes.com/blog/tutorials/how-to-add-a-request-a-quote-button-to-all-woocommerce-products/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Mar 2021 15:56: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WooCommerce Tutorials\";s:7:\"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:31:\"https://yithemes.com/?p=1181407\";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:298:\"It is one of the easiest ways to receive leads for your products or services to your business. A request a quote plugin can do much more than receiving inquiries from your visitors. Or by changing the Add to Cart button to Request a Quote or to a contact form. This tutorial will tell you [&#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:13:\"Ronald Gijsel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://yithemes.com/blog/tutorials/how-to-add-a-request-a-quote-button-to-all-woocommerce-products/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:59:\"\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:44:\"A quick guide to setting up the Proteo theme\";s:7:\"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://yithemes.com/blog/yit-news/quick-guide-to-setting-up-the-proteo-theme/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://yithemes.com/blog/yit-news/quick-guide-to-setting-up-the-proteo-theme/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Mar 2021 12:17: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://yithemes.com/?p=1178942\";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:332:\"Let&#8217;s take a look at our free WooCommerce theme Proteo. After installing the theme, you&#8217;ll be able to create a unique look for your store in just a few steps, thanks to Proteo&#8217;s many useful options. But don&#8217;t worry, even if you don&#8217;t know where to start, Proteo is there for you. You can also [&#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:11:\"Simon Kraft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://yithemes.com/blog/yit-news/quick-guide-to-setting-up-the-proteo-theme/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:59:\"\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:70:\"Level up your Store; it’s time for spring clean and to get organized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://yithemes.com/blog/e-commerce/level-up-your-store-spring-clean/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://yithemes.com/blog/e-commerce/level-up-your-store-spring-clean/#respond\";s: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, 11 Mar 2021 12:34:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Level up your store\";s:7:\"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:31:\"https://yithemes.com/?p=1178318\";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:319:\"Spring is always the perfect time for a good cleaning and organizing your business. Well, what about your online store? Precisely the same, though you can leave your dusters and polishing cloth. In this part of ‘level up your store,’ we will show you how you can get products in front of the customer with [&#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:13:\"taniagonzalez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://yithemes.com/blog/e-commerce/level-up-your-store-spring-clean/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:59:\"\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:82:\"Crew member Highlight; meet Sara, who makes the complicated, simple, really simple\";s:7:\"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:45:\"https://yithemes.com/blog/team/sara-presenti/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://yithemes.com/blog/team/sara-presenti/#respond\";s: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, 05 Mar 2021 12:39: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"YITH 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:31:\"https://yithemes.com/?p=1177712\";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:324:\"If we had to say who Sara Presenti is and what she does at YITH, it would take a long time to answer. UX/UI Designer, copywriter sometimes because she loves writing, youtube video content creator, and video reviewer&#8230; Someone once told her that her job is &#8220;to design kick-ass plugin UX and keep the guys [&#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:13:\"taniagonzalez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://yithemes.com/blog/team/sara-presenti/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s: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:26:\"https://yithemes.com/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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:21:{s:4:\"date\";s:29:\"Sat, 08 May 2021 23:48:27 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"set-cookie\";s:151:\"__cfduid=d44e2f62d898a9ae5be596c6f77f06cbf1620517707; expires=Mon, 07-Jun-21 23:48:27 GMT; path=/; domain=.yithemes.com; HttpOnly; SameSite=Lax; Secure\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 06 May 2021 17:46:57 GMT\";s:4:\"etag\";s:36:\"W/\"642819dc68076755cb797e2e62f44cd8\"\";s:4:\"link\";s:252:\"</wp-content/themes/yithemes/assets/css/main.min.css?ver=3.8.33>; rel=preload; as=style,</wp-includes/js/jquery/jquery.js?ver=1.12.4-wp>; rel=\"preload\"; as=script,</wp-content/themes/yithemes/assets/js/scripts.min.js?ver=3.8.33>; rel=preload; as=script\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:14:\"x-kinsta-cache\";s:4:\"MISS\";s:19:\"x-edge-location-klb\";s:56:\"7SKuH0JDlSKBvbnEN5NRyTaw871743755673637d7a6918d6e53f6708\";s:13:\"cache-control\";s:13:\"max-age=86400\";s:15:\"cf-cache-status\";s:3:\"HIT\";s:3:\"age\";s:5:\"85952\";s:13:\"cf-request-id\";s:32:\"09effaf6650000eb9d3fa80000000001\";s:9:\"expect-ct\";s:87:\"max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\"\";s:25:\"strict-transport-security\";s:44:\"max-age=15552000; includeSubDomains; preload\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:10:\"cloudflare\";s:6:\"cf-ray\";s:20:\"64c694370b85eb9d-LAX\";s:7:\"alt-svc\";s:70:\"h3-27=\":443\"; ma=86400, h3-28=\":443\"; ma=86400, h3-29=\":443\"; ma=86400\";}}s:5:\"build\";s:14:\"20201017055008\";}','no'),(1390,'_transient_timeout_feed_mod_40a89299829082877949471eeb1c21e3','1620560907','no'),(1391,'_transient_feed_mod_40a89299829082877949471eeb1c21e3','1620517707','no'),(1392,'_transient_timeout_wc_report_sales_by_date','1620604107','no'),(1393,'_transient_wc_report_sales_by_date','a:8:{s:32:\"1be6fbcde723cc1b6fee03f1475697e1\";a:0:{}s:32:\"ba30ce67ee29e46d19defcdd67dc06e4\";a:0:{}s:32:\"ec7b6397574c3a848b20c8f14d189326\";a:0:{}s:32:\"dd843385864d1461694d4318fab1f566\";N;s:32:\"a4cf61807899a161269ed5442704f3c1\";a:0:{}s:32:\"51ae89429dd86023734d49130cb45c8b\";a:0:{}s:32:\"56609ffa8275f062be627b733fbac9e1\";a:0:{}s:32:\"0819736497d3090e376dc3bce046fe77\";a:0:{}}','no'),(1394,'_transient_timeout_wc_admin_report','1620604107','no'),(1395,'_transient_wc_admin_report','a:1:{s:32:\"ffdf8e79bdfaada779796ae5ed1b87c1\";a:0:{}}','no'),(1396,'_site_transient_timeout_community-events-7ff9ccb4374950dbbb50cce91052df35','1620560916','no'),(1397,'_site_transient_community-events-7ff9ccb4374950dbbb50cce91052df35','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"64.187.165.0\";}s:6:\"events\";a:7:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:64:\"Demo + Discussion group: Creating and Registering Block Patterns\";s:3:\"url\";s:68:\"https://www.meetup.com/learn-wordpress-discussions/events/277669527/\";s:6:\"meetup\";s:27:\"Learn WordPress Discussions\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/learn-wordpress-discussions/\";s:4:\"date\";s:19:\"2021-05-11 11:00:00\";s:8:\"end_date\";s:19:\"2021-05-11 12:00:00\";s:20:\"start_unix_timestamp\";i:1620756000;s:18:\"end_unix_timestamp\";i:1620759600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.7799987792970028976924368180334568023681640625;s:9:\"longitude\";d:-122.419998168950002082056016661226749420166015625;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:30:\"WordCamp Northeast Ohio Region\";s:3:\"url\";s:30:\"https://neo.wordcamp.org/2021/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2021-05-21 00:00:00\";s:8:\"end_date\";s:19:\"2021-05-23 00:00:00\";s:20:\"start_unix_timestamp\";i:1621569600;s:18:\"end_unix_timestamp\";i:1621742400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.26178730000000172140062204562127590179443359375;s:9:\"longitude\";d:-81.16372450000000071668182499706745147705078125;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:28:\"WordPress Helpdesk & Hacking\";s:3:\"url\";s:73:\"https://www.meetup.com/South-Sound-WordPress-Meetup/events/zhwffsycchblb/\";s:6:\"meetup\";s:28:\"South Sound WordPress Meetup\";s:10:\"meetup_url\";s:52:\"https://www.meetup.com/South-Sound-WordPress-Meetup/\";s:4:\"date\";s:19:\"2021-05-08 10:00:00\";s:8:\"end_date\";s:19:\"2021-05-08 12:00:00\";s:20:\"start_unix_timestamp\";i:1620493200;s:18:\"end_unix_timestamp\";i:1620500400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.2900009155270026894868351519107818603515625;s:9:\"longitude\";d:-122.6200027465799990977757261134684085845947265625;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"Virtual Mega Meetup\";s:3:\"url\";s:63:\"https://www.meetup.com/SeattleWordPressMeetup/events/277077262/\";s:6:\"meetup\";s:24:\"Seattle WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/SeattleWordPressMeetup/\";s:4:\"date\";s:19:\"2021-05-16 10:00:00\";s:8:\"end_date\";s:19:\"2021-05-16 14:00:00\";s:20:\"start_unix_timestamp\";i:1621184400;s:18:\"end_unix_timestamp\";i:1621198800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.580001831055000138803734444081783294677734375;s:9:\"longitude\";d:-122.4000015258800004858130705542862415313720703125;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:24:\"Olympia WordPress Meetup\";s:3:\"url\";s:75:\"https://www.meetup.com/Olympia-WordPress-Meetup-OlyWP/events/kcdtxrycchbbc/\";s:6:\"meetup\";s:32:\"Olympia WordPress Meetup (OlyWP)\";s:10:\"meetup_url\";s:54:\"https://www.meetup.com/Olympia-WordPress-Meetup-OlyWP/\";s:4:\"date\";s:19:\"2021-05-20 19:00:00\";s:8:\"end_date\";s:19:\"2021-05-20 21:00:00\";s:20:\"start_unix_timestamp\";i:1621562400;s:18:\"end_unix_timestamp\";i:1621569600;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:46.99000167846700293239337042905390262603759765625;s:9:\"longitude\";d:-122.8700027465799990977757261134684085845947265625;}}i:5;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:21:\"WP Freelancers Meetup\";s:3:\"url\";s:67:\"https://www.meetup.com/SeattleWordPressMeetup/events/jjtpbsyccjbfb/\";s:6:\"meetup\";s:24:\"Seattle WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/SeattleWordPressMeetup/\";s:4:\"date\";s:19:\"2021-06-03 10:00:00\";s:8:\"end_date\";s:19:\"2021-06-03 12:00:00\";s:20:\"start_unix_timestamp\";i:1622739600;s:18:\"end_unix_timestamp\";i:1622746800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.580001831055000138803734444081783294677734375;s:9:\"longitude\";d:-122.4000015258800004858130705542862415313720703125;}}i:6;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:37:\"WordPress Developer Meetup: Topic TBD\";s:3:\"url\";s:67:\"https://www.meetup.com/SeattleWordPressMeetup/events/lzwzgsyccjbmb/\";s:6:\"meetup\";s:24:\"Seattle WordPress Meetup\";s:10:\"meetup_url\";s:46:\"https://www.meetup.com/SeattleWordPressMeetup/\";s:4:\"date\";s:19:\"2021-06-09 18:00:00\";s:8:\"end_date\";s:19:\"2021-06-09 20:00:00\";s:20:\"start_unix_timestamp\";i:1623286800;s:18:\"end_unix_timestamp\";i:1623294000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:47.580001831055000138803734444081783294677734375;s:9:\"longitude\";d:-122.4000015258800004858130705542862415313720703125;}}}}','no'),(1398,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1620560924','no'),(1399,'_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:49:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – 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:\"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: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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 May 2021 15:00: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:\"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=5.8-alpha-50824\";s:7:\"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:57:\"\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:34:\"The Month in WordPress: April 2021\";s:7:\"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/2021/05/the-month-in-wordpress-april-2021/\";s: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, 04 May 2021 15:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10253\";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:293:\"As WordPress grows, both in usage as a CMS and in participation as a community, it’s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS.  That was [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:11460:\"\n<blockquote class=\"wp-block-quote\"><p>As WordPress grows, both in usage as a CMS and in participation as a community, it’s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS. </p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> on the “<a href=\"https://wordpress.org/news/2021/04/your-opinion-is-our-opportunity/\">Your Opinion is Our Opportunity</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the importance of co-development and testing for the continued growth and maintenance of WordPress. This month’s updates align closely with these ideas. Read on and see for yourself.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.7.1 is launched</h2>\n\n\n\n<p>WordPress security and maintenance release &#8211; <a href=\"https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\">5.7.1</a> came out in April. The release fixes two major security issues and includes 26 bug fixes. You can update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org.</p>\n\n\n\n<p>Want to contribute to WordPress 5.8? Check out the <a href=\"https://make.wordpress.org/core/5-8/\">5.8 Development Cycle</a>. To contribute to core, head over to <a href=\"https://core.trac.wordpress.org/\">Trac</a>, and<a href=\"https://core.trac.wordpress.org/report/6\"> pick a 5.8 ticket</a> –– more info in the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>. Don’t forget to join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>. The Core Team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Gutenberg Version 10.3, 10.4, and 10.5 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">version 10.3</a> on April 2, <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">version 10.4</a> on April 14, and <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">version 10.5</a> on April 30! <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">Version 10.3</a> improves the block toolbar and the navigation editor, whereas <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">version 10.4</a> adds block widgets to the customizer and improvements to the site editor list view. In <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">version 10.5</a>, you will find a set of new block patterns and enhancements to the template editing mode, along with the ability to embed PDFs.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/03/08/whats-next-in-gutenberg-march-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates. If you are unfamiliar with the Gutenberg plugin, <a href=\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\">learn more in this post</a>.</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p>Following the <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Full Site Editing (FSE) feature demo</a> hosted by <a href=\"https://profiles.wordpress.org/matveb/\">Mattias Ventura</a>, the project leadership decided that WordPress 5.8 will only include some FSE features, such as a template editor for pages/blank templates, a widget editor screen, and the theme.json mechanism. Other features like the Global Styles interface and Site Editor (managing all templates) will be made available later. The team has <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">started working on the next steps</a> in shipping these chosen FSE features with version 5.8.</p>\n\n\n\n<p>New to FSE? Check out <a href=\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\">this blog post</a> for a high-level overview of the project. You can help test FSE by participating in the <a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">latest FSE Outreach Program testing call </a>–– leave your feedback by May 5th. Want to participate in future testing calls? Stay updated by following the <a href=\"https://make.wordpress.org/test/2021/04/22/upcoming-fse-outreach-program-schedule/\">FSE outreach schedule</a>. You can also <a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\">submit your questions</a> around FSE right now.</p>\n\n\n\n<h2>WordCamp Europe 2021 is on the calendar</h2>\n\n\n\n<p>One of the most exciting WordPress events,&nbsp; <a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe 2021</a>, will be held online on June 7-9, 2021! Event organizers have opened up calls for <a href=\"https://europe.wordcamp.org/2021/call-for-sponsors/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2021/call-for-media-partners-and-supporters/\">media partners</a>. Free tickets for the event will be available soon — <a href=\"https://europe.wordcamp.org/2021/#subscribe-email\">sign up for email updates</a> to be notified when they are out!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>WordPress now powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">41% of the web</a>!</li><li><a href=\"https://make.wordpress.org/updates/2021/04/15/quarterly-updates-q1-2021/\">Q1 2021 updates from the WordPress project</a> have been published.</li><li>The Core Team discussed a <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/\">proposal</a> to treat Federated Learning of Cohorts (FLoC), a Google Chrome feature, as a security concern. The team <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/#comment-41207\">eventually decided</a> to track the status of the FLoC trial/implementation in a <a href=\"https://core.trac.wordpress.org/ticket/53069\">Trac ticket</a> and monitor periodically. </li><li>The Core Team will <a href=\"https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/\">remove Internet Explorer 11 support in WordPress version 5.8</a>. </li><li>The Community Team has opened up a <a href=\"https://make.wordpress.org/community/2021/04/26/discussing-the-path-to-in-person-wordcamps/\">discussion on the path to in-person WordCamps</a> and is requesting feedback from community members.</li><li>The Community Team is also <a href=\"https://make.wordpress.org/community/2021/04/19/discussion-companies-who-run-competitive-ads-against-wordpress-and-apply-to-sponsor-wordcamps/\">requesting feedback</a> on whether companies who run competitive ads against WordPress can apply to sponsor WordCamps. </li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica 2021</a> and <a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece 2021</a> were held successfully in April. Videos of WordCamp Centroamérica are now available <a href=\"https://wordpress.tv/event/wordcamp-centroamerica-2021/\">on WordPress.tv</a>! While you are at it, don&#8217;t miss this<a href=\"https://central.wordcamp.org/news/2021/04/29/making-a-great-online-conference-experience-at-wordcamp-prague/#\"> excellent recap of WordCamp Prague 2021</a> on the WordCamp Central blog.</li><li>Contributor teams are actively working on building the <a href=\"https://wordpress.org/patterns/\">Block Pattern Directory</a>. You can read about work updates on this project from the <a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\">Meta Team</a> and the <a href=\"https://make.wordpress.org/design/2021/03/30/wordpress-org-patterns-directory/\">Design Team</a>.</li><li>Check out the <a href=\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\">blog post on getting started with the Figma WordPress Design Library</a>. You can use the library to create design prototypes for the WordPress UI in <a href=\"https://www.figma.com/\">Figma</a>.</li><li>The Polyglots Team is making significant progress on the <a href=\"https://make.wordpress.org/polyglots/2021/04/26/polyglots-training-working-group-update-3/\">Polyglots Training course</a>.</li><li>The Training Team has <a href=\"https://make.wordpress.org/training/2021/04/23/discussion-contributor-ladders-for-the-training-team-and-learn-wordpress/\">proposed a contributor ladder</a> as a resource for team contributors to understand ways to participate and find growth opportunities. </li><li>The <a href=\"https://github.com/WordPress/Requests\">Requests library</a> has moved to the WordPress GitHub organization and has a new release: <a href=\"https://github.com/WordPress/Requests/releases/tag/v1.8.0\">version 1.8.0</a>. </li><li>The Docs Team is<a href=\"https://make.wordpress.org/docs/2021/04/05/update-on-the-revision-of-documentation/\"> working on redesigning HelpHub</a> by reviewing its content and design.</li><li>The Themes Team has shared a proposal on <a href=\"https://make.wordpress.org/themes/2021/04/22/removing-blockers-for-block-themes/\">fixing upload issues for block themes</a>.</li><li><a href=\"https://wordpress.org/news/2021/04/people-of-wordpress-tyler-lau/\">Tyler Lau</a> from the U.S. was featured in April’s <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\n\n\n<p><em>The following folks contributed to April’s Month in WordPress: <a href=\'https://profiles.wordpress.org/andreamiddleton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>andreamiddleton</a> <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a> <a href=\'https://profiles.wordpress.org/hlashbrooke/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hlashbrooke</a> and <a href=\'https://profiles.wordpress.org/jrf/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jrf</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:\"10253\";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:57:\"\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:55:\"Getting Started with the Figma WordPress Design Library\";s:7:\"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:91:\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\";s: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, 28 Apr 2021 17:52: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:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"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=10173\";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:53:\"Get Started with the Figma WordPress Design Library! \";s: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:26010:\"\n<p>Created by James Koster, (<a href=\'https://profiles.wordpress.org/jameskoster/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jameskoster</a>)</p>\n\n\n\n<p>As the name suggests, the WordPress Design Library is a library of WordPress design assets, enabling anyone to quickly create design prototypes for WordPress UI in Figma.</p>\n\n\n\n<p>These tools are useful for designers when creating new UI and for anyone looking to contribute ideas, enhancements, or even solutions to bug reports. Sometimes pictures really do speak a thousand words.</p>\n\n\n\n<p>In this post, we&#8217;ll talk about some key features of Figma before diving into a practical example that demonstrates some of the WordPress Design Library utilities.</p>\n\n\n\n<h2><strong>What Is Figma?</strong></h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=632%2C296&#038;ssl=1\" alt=\"\" class=\"wp-image-10174\" width=\"632\" height=\"296\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=1024%2C481&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=300%2C141&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=768%2C361&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=1536%2C722&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?w=1770&amp;ssl=1 1770w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p><a rel=\"nofollow\" href=\"https://www.figma.com/\">Figma</a> is a collaborative design tool that members of the WordPress project&#8217;s design team have<a href=\"https://make.wordpress.org/design/2018/11/19/figma-for-wordpress/\"> been using</a> for several years to work on and share design concepts. It offers a variety of handy features such as: in-browser access, rich prototyping tools, component libraries, code inspectors, live embeds, inline commenting, plugins, and much much more.</p>\n\n\n\n<p>Perhaps best of all, it is totally free to sign up and start playing around. If you join the WordPress.org Figma organization (instructions below), you&#8217;ll gain access to the WordPress Design Library enabling you to design WordPress UI in no time.</p>\n\n\n\n<h2><strong>What Is the WordPress Design Library?</strong></h2>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In Figma, you can share components and styles by publishing them, transforming your file into a library so that you can use instances of those components in other files.</p><p></p><p></p><cite><a rel=\"nofollow\" href=\"https://www.figma.com/best-practices/components-styles-and-shared-libraries/#:~:text=Libraries%3A%20In%20Figma%2C%20you%20can,instances%20of%20your%20components%20live.\">Figma.com</a></cite></blockquote>\n\n\n\n<p>It may be easiest to think of the WordPress Design Library as a visual representation of all the javascript components that compose UI in the WordPress codebase. As an end user of the library, you can use those components in a self-contained environment to create new interface designs. It&#8217;s kind of like a big LEGO box containing all the UI pieces (buttons, form inputs, etc.) that you can use to create and try out new designs.</p>\n\n\n\n<figure class=\"wp-block-jetpack-image-compare\"><div class=\"juxtapose\" data-mode=\"horizontal\"><img loading=\"lazy\" id=\"10175\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image13.png?resize=632%2C340&#038;ssl=1\" alt=\"\" width=\"632\" height=\"340\" class=\"image-compare__image-before\" data-recalc-dims=\"1\" /><img loading=\"lazy\" id=\"10176\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image6.png?resize=632%2C340&#038;ssl=1\" alt=\"\" width=\"632\" height=\"340\" class=\"image-compare__image-after\" data-recalc-dims=\"1\" /></div></figure>\n\n\n\n<p>Creating designs with these assets enables rapid ideation on new interfaces by removing mundane processes that one would ordinarily have to work through. Nobody wants to repeatedly double-check that the button they made perfectly matches the buttons rendered by the code! And on the flip-side of that coin, anyone sharing a design with others will generally endeavor to make specific elements (like buttons) match what exists in the code as closely as possible. The WordPress Design Library solves both these headaches and more.</p>\n\n\n\n<p>An additional benefit to these assets visually matching what exists in the codebase is that any designs you create with them will inherently make use of the latest WordPress design language and consequently <em>feel</em> like WordPress with almost no effort required. Passing such designs on to developers makes them easier to interpret and implement too.</p>\n\n\n\n<h2><strong>Figma Fundamentals</strong></h2>\n\n\n\n<p>Before getting into the practical section of this post, let&#8217;s quickly cover some of the fundamental features of Figma libraries. This will help prepare us for working with the WordPress Design Library.</p>\n\n\n\n<h3><strong>Components</strong></h3>\n\n\n\n<p>As we touched on above, the library consists of &#8220;components&#8221; that serve as visual counterparts to their code-based equivalents. That is to say, there is a Button component in Figma, <em>and</em> a matching Button component in the WordPress codebase.</p>\n\n\n\n<p>But what <em>is</em> a Figma component?</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Components are elements you can reuse across your designs. They help to create and manage consistent designs across projects.</p><p></p><cite><a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360038662654-Guide-to-Components-in-Figma\">help.figma.com</a></cite></blockquote>\n\n\n\n<p>Let&#8217;s quickly explore some of the properties of Figma components to understand the ways they help when working on our next design.</p>\n\n\n\n<h3><strong>Variants</strong></h3>\n\n\n\n<p>Some Figma components offer variants. One example is Button(s) which all have the following states:</p>\n\n\n\n<ul><li>Resting</li><li>Hover</li><li>Focus</li><li>Disabled</li></ul>\n\n\n\n<p>These can be manipulated via the variants interface in Figma:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"449\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=632%2C449&#038;ssl=1\" alt=\"\" class=\"wp-image-10179\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=1024%2C727&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=300%2C213&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=768%2C545&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Other examples of components with variants are form inputs and menu items. Variants are a new feature in Figma, so we&#8217;ll be adding more over time.</p>\n\n\n\n<h3><strong>Overrides</strong></h3>\n\n\n\n<p>Although any components you insert are intrinsically linked to the master component in the library, it is possible to override some properties.</p>\n\n\n\n<p>While working with an instance of the Button component, you can change things like the label, or even the background color, while maintaining the link to the master component in the library. If you&#8217;re familiar with git workflows, this is kind of like creating a local branch. Any changes you make can easily be reset in a couple of clicks.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"527\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=632%2C527&#038;ssl=1\" alt=\"\" class=\"wp-image-10180\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=1024%2C854&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=300%2C250&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=768%2C641&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Overrides made to your local instance will persist even when the master component is updated. So if your design calls for a button with a green background, you can apply that override safely with the knowledge that even if the master component is updated, your button can inherit those updates and remain green.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>We&#8217;ve only really scratched the surface of components here. So I would recommend the official <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360038662654-Guide-to-Components-in-Figma\">Figma documentation</a> for more advanced information.</p>\n\n\n\n<h3><strong>Figma Styles</strong></h3>\n\n\n\n<p>In addition to components, styles are also published as part of the WordPress Design Library. They have similar properties to components in that a master style exists in the library and can be utilized in your local Figma file. Just like Components, Styles will receive updates when changes to the library are published.</p>\n\n\n\n<p>Styles are used to define colors, typographical rules, and effects like drop-shadows present in the WordPress codebase. They enable you to apply things like text or background colors that will match other UI parts.</p>\n\n\n\n<p>Using Styles from the library, you ensure that your creations match existing UI elements, making it easier to implement.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"799\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=632%2C799&#038;ssl=1\" alt=\"\" class=\"wp-image-10181\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=810%2C1024&amp;ssl=1 810w, https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=237%2C300&amp;ssl=1 237w, https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=768%2C971&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?w=1152&amp;ssl=1 1152w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>To learn more about styles in Figma, I recommend the <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360039238753-Styles-in-Figma\">official documentation</a>.</p>\n\n\n\n<h3><strong>Views and Stickers</strong></h3>\n\n\n\n<p>&#8220;Stickers&#8221; are simply arrangements of Components and Styles that have been combined to represent common UI elements. They are not good candidates for full componentization due to their frequent customization needs. Examples of Stickers include the Inspector sidebar and the block inserter:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"770\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=632%2C770&#038;ssl=1\" alt=\"\" class=\"wp-image-10182\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=841%2C1024&amp;ssl=1 841w, https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=246%2C300&amp;ssl=1 246w, https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=768%2C935&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?w=1113&amp;ssl=1 1113w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Their utility is simple: find the sticker you need, peel (copy) it from the WordPress Design Library, and stick (paste) it into your local file before customizing as needed.</p>\n\n\n\n<p><em>Stickers</em> are not Figma features like Components and Styles, but any stickers you copy to a working file will stay up to date by virtue of their underlying assets.</p>\n\n\n\n<p><em>Views</em> are arrangements of components, styles, <em>and</em> stickers.</p>\n\n\n\n<h2><strong>Designing a Block Using the WordPress Design Library</strong></h2>\n\n\n\n<p>Okay, now that we have a handle on the basics of Figma libraries and their features and the utilities of the WordPress Design Library like Stickers and Views, let&#8217;s work through a practical example – designing the UI for a brand new block.</p>\n\n\n\n<h3><strong>Getting Started</strong></h3>\n\n\n\n<p>All you need to get started is a Figma account added to the WordPress.org Figma organization.</p>\n\n\n\n<p>Once you&#8217;ve signed up at<a href=\"https://www.figma.com/\"> Figma</a>, simply join the<a href=\"http://wordpress.slack.com/messages/design/\"> #Design</a> channel on the community Slack and request an invite. Include your Figma username, and a friendly community member will help get you set up in no time.</p>\n\n\n\n<p>Now the fun begins!</p>\n\n\n\n<p>To create a fresh new design file in Figma, visit the<a href=\"https://www.figma.com/files/project/1339415/Gutenberg?fuid=652576565531990233\"> Gutenberg project</a> and click the &#8220;+ New&#8221; button.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"395\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=632%2C395&#038;ssl=1\" alt=\"\" class=\"wp-image-10183\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=1024%2C640&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=300%2C187&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=768%2C480&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?w=1469&amp;ssl=1 1469w, https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Now let&#8217;s include the WordPress Design Library in our working file so that we have access to all the goodies we&#8217;ll need:</p>\n\n\n\n<ol><li>Open the &#8220;Assets&#8221; panel and click the little book icon to view the available Team Libraries.</li><li>In the modal, toggle the WordPress Design Library on. You can leave the others off for now.</li></ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"341\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=632%2C341&#038;ssl=1\" alt=\"\" class=\"wp-image-10184\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=1024%2C553&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=300%2C162&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=768%2C415&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=1536%2C829&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>After closing the modal, you&#8217;ll notice a number of components become visible in the assets panel. To insert them, they can be dragged on to the canvas:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"341\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=632%2C341&#038;ssl=1\" alt=\"\" class=\"wp-image-10185\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=1024%2C553&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=300%2C162&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=768%2C415&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=1536%2C829&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It&#8217;s kind of like inserting a block <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<h3><strong>Creating a Pizza Block <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f355.png\" alt=\"🍕\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></strong></h3>\n\n\n\n<p>I love to eat pizza, so for fun, I&#8217;m going to design a new block that simply allows the user to display a delicious pizza in their posts and pages. I want the block to include options for a total number of slices and different toppings.</p>\n\n\n\n<h3><strong>Work Out the Flow</strong></h3>\n\n\n\n<p>I always like to concentrate on individual flows when designing blocks. That is to say, the linear steps a user will take when working with that block. In this case, I want to create visualizations of the following steps/views in our Figma file:</p>\n\n\n\n<ol><li>Inserting the block from the Block Inserter</li><li>The Pizza Block placeholder state including options in the block, its Toolbar, and the Inspector</li><li>The configured Pizza Block settings</li><li>The end result – a delicious pizza sitting comfortably on the canvas</li></ol>\n\n\n\n<h3><strong>Sketch the New States</strong></h3>\n\n\n\n<p>Thanks to the WordPress Design Library, I&#8217;ll be using as many existing UI components as possible, but I still need a rough idea of how they will be composed in the new interfaces that my Pizza block will require. I normally find it helpful to sketch these out on paper.</p>\n\n\n\n<p>Here&#8217;s the placeholder state which users will see when they first insert the block. This should be all I need:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"843\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image2.png?resize=632%2C843&#038;ssl=1\" alt=\"\" class=\"wp-image-10186\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image2.png?w=768&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image2.png?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3><strong>Prepare the Views and Stickers</strong></h3>\n\n\n\n<p>Helpfully, there are Views in the WordPress Design Library I can use for each of the steps in the flow outlined above.</p>\n\n\n\n<p>I open the library, navigate to the Views page, find the views I need, copy them, and paste into my working file.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"374\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=632%2C374&#038;ssl=1\" alt=\"\" class=\"wp-image-10187\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=1024%2C606&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=300%2C178&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=768%2C455&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=1536%2C910&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It is very important to <strong>copy</strong> (not cut) Views from the library so that they remain intact and other people can still access them. If you cut them, they&#8217;ll be gone forever, so please don&#8217;t do that <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\n\n\n<p>I&#8217;m also going to need a block placeholder sticker, so I navigate to the Stickers page, copy the one that most closely resembles my sketch from before, and paste it into my working file.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"374\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=632%2C374&#038;ssl=1\" alt=\"\" class=\"wp-image-10188\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=1024%2C606&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=300%2C178&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=768%2C455&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>As with views, please only <strong>copy</strong> stickers; do not cut them.</p>\n\n\n\n<h3><strong>Gather the Components</strong></h3>\n\n\n\n<p>Referring back to the placeholder state I sketched out on paper (it can be helpful to import this into your Figma file), I can see that I&#8217;m going to need some form elements to realize the design.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"446\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=632%2C446&#038;ssl=1\" alt=\"\" class=\"wp-image-10189\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=1024%2C722&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=300%2C211&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=768%2C541&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=1536%2C1083&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?w=1999&amp;ssl=1 1999w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>I navigate to the Assets panel, locate the components I need, and drag them into my file:</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/UDyZdtZGo9N0e2qwgyIyz8V3xu9_zwGW9qBbBnozvwmXmVYURZ-ROLANtW7FafWYbQRnPQNWeRupk_9_1nzmKn8gRBlYDMKYR3QpwAubv8ZKAPMS_uV9VaYHsjfPItfqPiY0d1X5\" alt=\"\" /></figure>\n\n\n\n<p>Helpful tip: Once a component has been inserted, you can transform it into another component via its settings panel. Sometimes it is easier to copy/paste a component you already inserted and transform it this way, rather than opening the assets panel over and over.</p>\n\n\n\n<h3><strong>Arrange the Views, Stickers, and Components to Create a Coherent Design</strong></h3>\n\n\n\n<p>Now that we’ve gathered all the individual pieces we need, it&#8217;s simply a case of arranging them so that they resemble each of the steps of the flow we outlined before. This is done with simple drag and drop.</p>\n\n\n\n<p>If you&#8217;re familiar with software like Photoshop, Sketch, and others, this should feel very familiar.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/DVeU3I9ajqRvMD_e5q6G5vctb4TGbgA9CsIR9xYZ3yPqtmPhbDP9cODTHH4KS-I8GB9R4UF2DV6SSsayKpy45AEDvvY2gLbMsCA0ivfsqGcm509OWeTOpaMuQcv7TFz6-xoiKFfo\" alt=\"\" /></figure>\n\n\n\n<p>Once everything is in place, our flow is complete:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"97\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=632%2C97&#038;ssl=1\" alt=\"\" class=\"wp-image-10238\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=1024%2C157&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=300%2C46&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=768%2C118&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=1536%2C235&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?w=1999&amp;ssl=1 1999w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>I still find it incredible that we&#8217;re able to do this in just a few short moments.</p>\n\n\n\n<h3><strong>Hook up the Prototype</strong></h3>\n\n\n\n<p>With each step of our flow created, the last piece of the puzzle is to connect them and form a clickable prototype.</p>\n\n\n\n<p>I switch to the Prototype panel and create click behaviors by selecting a layer, then dragging the white dot to the corresponding frame.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/i0fLdjWZhRTNFCKvHLLEfUnFx5CIm7p014R1avEV02F_B4DrG1v6Cw-XqYBth9JVYylylM7_mkqcALWEWcUVf0dRhgixJRtmsRIDHyMIZyom2cPdetMAFixgsvsmrqT03Xevync7\" alt=\"\" /></figure>\n\n\n\n<p>There are a variety of behaviors that the Figma prototyping tools support, such as a hover, drag, and click. It is even possible to create smart animations. Perhaps that&#8217;s something we can explore in another tutorial, but for now, I will refer you to the <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360040314193-Guide-to-prototyping-in-Figma\">Figma documentation</a> for more advanced prototyping.</p>\n\n\n\n<p>Now that I&#8217;ve connected all the appropriate elements, I am able to take my prototype for a test drive by clicking the Play <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/25b6.png\" alt=\"▶\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> icon:</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/nBmEr4ohZ8RsjLM5wm4u8UY_zzTE0V1bXj-uoNV79WDibl5bgkZXY64ixl_BgNutg74fvxRZokUtLzWuWVlD46W4tAD_-Dcf-TclgIR9UoO73oCmNxmfcSEmUDgDG0e5WYFJ80tH\" alt=\"\" /></figure>\n\n\n\n<p>You can try it too; just click <a href=\"https://www.figma.com/proto/BmRYWzfrakFwsmIQa24xqx/Pizza-Block?page-id=0%3A1&amp;node-id=48%3A767&amp;viewport=1792%2C385%2C0.46477335691452026&amp;scaling=min-zoom\">here</a>.</p>\n\n\n\n<h2><strong>That&#8217;s All, Folks!</strong></h2>\n\n\n\n<p>I tried to keep this tutorial fairly simple and concise; even though we only really got to grips with the basics here, you can see the power of Figma and the WordPress Design Library when it comes to trying out new designs.</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:\"10173\";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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Curious About Full Site Editing?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\";s: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, 27 Apr 2021 17:26:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10190\";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:296:\"The second major release of the year is right around the corner. You might have heard a bit of buzz about full site editing around your WordPress circles, so this post will give you some big picture things to know as well as a few wayfinding links for anyone who wants to know more. For [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2792:\"\n<p>The second major release of the year is right around the corner. You might have heard a <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">bit of buzz</a> about full site editing around your WordPress circles, so this post will give you some big picture things to know as well as a few wayfinding links for anyone who wants to know more.</p>\n\n\n\n<p><strong>For Site Owners and Operators</strong></p>\n\n\n\n<p>If you own and operate a WordPress site, updating to version 5.8 should be a seamless experience, just like any other update. All the conversation around full site editing is very exciting, but shouldn’t be alarming—<strong>everything in the next release that relates to full site editing is opt-in</strong>. To experiment freely with it, you need a theme that is built for it. Check the links at the end to see a few examples!</p>\n\n\n\n<p><strong>For Agencies and Theme/Plugin Developers</strong></p>\n\n\n\n<p>If you extend the functionality of the WordPress CMS for clients, updating to version 5.8 should also be seamless. As always, it’s smart to spot-check custom implementations in a staging environment or fully test when the release candidate is made available. Want to test your products and get everything client-ready? Check out any of the testing options below.</p>\n\n\n\n<p><strong>For Contributors and Volunteers</strong></p>\n\n\n\n<p>If you contribute time and expertise to the WordPress project, you can join us in the interesting work leading up to the WordPress 5.8 release and update your site with the deep satisfaction of a job well done. There is a lot that goes into every release—from design and development to documentation and translation; if you’ve got some time to spare, and want to help support the project that supports the tool that supports your site (whew!), check out the links below.</p>\n\n\n\n<h2>Resources</h2>\n\n\n\n<ul><li>A few block themes: <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks</a>, <a href=\"https://wordpress.org/themes/hansen/\">Hansen</a>, <a href=\"https://wordpress.org/themes/block-based-bosco/\">Block-based Bosco</a>, <a href=\"https://wordpress.org/themes/q/\">Q</a></li><li>A few focus areas: <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">Gutenberg plugin focuses</a></li><li>A few ways you can test: <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a>, <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Beta testing plugin</a>, <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/#nightly\">Gutenberg Times nightly build</a></li><li>A few pieces of documentation: <a href=\"https://developer.wordpress.org/block-editor/handbook/full-site-editing/\">Full Site Editing Overview</a></li></ul>\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:\"10190\";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:58:\"\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:44:\"WP Briefing: Your Opinion is Our Opportunity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2021/04/your-opinion-is-our-opportunity/\";s: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, 26 Apr 2021 15:24: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:8:\"category\";a:1:{i:0;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=10171\";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:148:\"In this episode, Josepha discusses the importance of co-development and testing for the continued growth and maintenance of the WordPress project. \";s: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/2021/04/WP-Briefing-007.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13068:\"\n<p>In this episode, Josepha discusses the importance of co-development and testing for the continued growth and maintenance of the WordPress project.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2008/10/usability-testing-report-25-and-crazyhorse/\">2.5 Usability Testing Report&nbsp;</a></li><li><a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe 2021</a></li><li><a href=\"https://www.meetup.com/Pune-WordPress-Knowledge-Exchange/events/277520243/\">Pune Work Along (Self Study) Meetup</a></li><li><a href=\"https://fr.wordpress.org/2021/04/09/le-30-avril-2021-rejoignez-nous-pour-un-nouveau-wordpress-translation-day-fr/\">French Mini-Translation Day, April 30, 2021</a></li><li><a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">April 14, 2021, Full Site Editing Go/No-Go Demo Recap</a></li><li><a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">Full Site Editing Go/No-Go Next Steps</a></li><li><a href=\"https://make.wordpress.org/test/\">Test WordPress.org</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10171\"></span>\n\n\n\n<p>0:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>0:39</p>\n\n\n\n<p>Prior to Gutenberg, our current multi-year project that is changing the way we see WordPress, another multi-year project changed the way we saw WordPress. Starting in 2008, substantial changes to the WordPress interface came in a series of major releases, starting with WordPress 2.5. That was before my time in the project; I&#8217;ve only ever worked with the current dashboard in WordPress. But, from what I&#8217;ve read, the user testing that would have gone into it was a huge undertaking and very well coordinated. Now, WordPress has not taken on that type of robust testing project since, but starting around 2014 or 2015, a community testing practice was started. I&#8217;ve shared these calls for testing frequently, both on Twitter and in this podcast. But you may not really know why I find the testing program so valuable. So today, I&#8217;m going to explore with you the concept of co-developers in open source.</p>\n\n\n\n<p>1:52</p>\n\n\n\n<p>Open source software, like WordPress, is built by the people who show up. There are a few obvious groups when you think of software, the developers, designers, technical writers, folks who monitor the forums, and really, all the teams you find in our WordPress project. Co-developers or co-creators, if you&#8217;ll join me in making our tent a little bigger, refers to the users of an open source product who actively engage and contribute to the work by using the software and sharing any bugs that they find.</p>\n\n\n\n<p>2:25</p>\n\n\n\n<p>I mentioned this group in the episode about how WordPress improves. Specifically in that episode, I underlined that if you consider users to be part of the collaborative process, as long as people use your product, those people will have opinions about your product’s needs. And today, I&#8217;m extending that thought a bit further to say that, as long as there are opinions, there are opportunities.</p>\n\n\n\n<p>2:51</p>\n\n\n\n<p>When you know what isn&#8217;t working, you can focus your attention on a solution, you can focus on making sure that you can make it work. The existence of co-creators is one of the great things about open source. No designer or developer or product owner has to know every sort of user to be able to get feedback from them. If they show up, test the software and get their thoughts written down, then you can start to see patterns and common pain points. It is also, unfortunately, one of the great difficulties of being an open source project. After all, if users don&#8217;t show up, or don&#8217;t test, or don&#8217;t write down their feedback, it&#8217;s impossible to know what worked for them and what didn&#8217;t. And on top of that, with such a large percentage of the web being supported by WordPress in this case, not every problem is part of a pattern. And not all patterns are part of the current priorities.</p>\n\n\n\n<p>3:54</p>\n\n\n\n<p>Looking beyond that double-edged sword. Let&#8217;s say that this idea of a co-creator makes sense to you. And more than that, you feel like it describes you. What does it mean for you to show up in WordPress? There are lots of good ways to offer this sort of feedback and contribute to those patterns that can help us see through the fog. So I have for you a mini list and, of course, a bunch of links in the show notes for you.&nbsp;</p>\n\n\n\n<p>So some good ways. First, you can participate in any of the dedicated calls for testing. They are short and frequently have a guide. I participate in them and generally find them fun. I say generally because sometimes I also find them frustrating. That&#8217;s really okay too; the frustrations helped me to identify that I found a problem. And if I can find a problem, then I have saved someone else from finding that problem in the future. The second thing you can do is file a bug report with information about what happened when you ran into a problem and how someone like me could make your bug happen on their site. Bug</p>\n\n\n\n<p>5:00</p>\n\n\n\n<p>Reporting is one of the things I&#8217;ve grown to really love in my time and open source; I did not love it. At first, I was really scared to do it. I mostly used to send videos of the bugs that I found to other people and ask them to file the bug reports for me. But then, of course, I never knew whether they got fixed or not. So I was scared to do it at first. But once I figured out what makes a “good report,” I felt like I was helping circle hidden treasure on a map or something. I realized also not everyone&#8217;s excited about finding hidden treasure on a map. But I play video games and finding hidden treasure on maps is, like, a thing.</p>\n\n\n\n<p>5:43</p>\n\n\n\n<p>A third really great way to contribute like this is that you can join any community meeting to learn more about what&#8217;s happening now and in the future, or just to see what makes WordPress work. As a heads up, these meetings go really fast. And they&#8217;re all in text. And there&#8217;s sometimes, but not all the time, a little bit of jargon that you have to head to your favorite search engine to find. But I sit in on about half of them myself and get a lot of really good information about things that I&#8217;ve been wondering about, things that looked broken, but actually are functioning exactly the way that they should. And I just didn&#8217;t want them to function that way. And more often than not, I found out that something that I thought was broken, was already identified and being fixed. Those are three great ways to show up and help give feedback that helps make WordPress better and more functional for more people.&nbsp;</p>\n\n\n\n<p>There are also a few other ways that we see people trying to share that feedback that don&#8217;t work quite as well. And I&#8217;m going to touch on a few of them just because it&#8217;s important to know, as you&#8217;re trying to figure out how to get started with this. The first one is just tweeting your frustrations, and I get it like that&#8217;s literally what Twitter is for.</p>\n\n\n\n<p>7:03</p>\n\n\n\n<p>But also it&#8217;s hard to create a block from “I am frustrated, behold my hateful rhetoric.” Not that any of you, my dear listeners, ever tweet hateful rhetoric. Still, that is really hard for anyone to figure out what was actually wrong in that moment. Another thing that is not the most functional way to give feedback is review brigading. The Internet rewards this kind of behavior, but I have found at least for WordPress, those false positives and false negatives can be really confusing for our new users. And the third way, that&#8217;s not our best way, and probably is the least best way, is just by giving up and not telling anyone what broke for you.</p>\n\n\n\n<p>7:45</p>\n\n\n\n<p>I know that I already said it&#8217;s not possible to fix everyone&#8217;s problems. But while it&#8217;s not possible to fix everyone&#8217;s problems the moment they get shared, it&#8217;s also truly impossible to fix any problems that no one knows exist. And so giving up and not sharing an issue so that we can identify it as part of a pattern of problems is probably the least effective way to help us help you get your problem solved.</p>\n\n\n\n<p>8:13</p>\n\n\n\n<p>This brings me back to the question of the value of WordPress users as co creators in the development process. As WordPress grows, both in usage as a CMS and in participation as a community, it&#8217;s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS. It&#8217;s also important for us to constantly remind ourselves that the best outcomes are the result of collaboration with the people who use WordPress the most. I know that not every type of user we have is showing up to give us feedback about where WordPress doesn&#8217;t work for them. And I would love to see more feedback that helps us to figure out where our patterns are.</p>\n\n\n\n<p>9:03</p>\n\n\n\n<p>So the bottom line is this without user feedback that has some clarity of what was expected versus what happened, the work to make a good choice involves a whole lot of guessing. So since open source software is built by the people who show up, I hope this gives you an idea of how you can show up and help improve the tool that powers your sites.</p>\n\n\n\n<p>9:32</p>\n\n\n\n<p>That brings us to today&#8217;s community highlight every episode or so I share either a great story of WordPress success or a great story of a WordPress contributor who helped some folks along the way. Today&#8217;s <a href=\"https://twitter.com/trishacodes/status/1357382647274762244\">community highlight</a> comes from @trishacodes who shared one of her early to WordPress mentors. She says “@RianRietveld was such an encouragement and helped me find the courage to speak up.” I have had myself many conversations with <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian</a>, and that rings true for me as well.&nbsp;</p>\n\n\n\n<p>10:00</p>\n\n\n\n<p>That brings us to the moment you&#8217;ve all been waiting for, the small list of big things. It&#8217;s actually kind of a medium list. Today, I&#8217;ve got four whole things to share with you all. The first thing on my list is that WordCamp Europe is coming, that will be June 7th through the 10th. It&#8217;s a multi-day online event. I will share in the show notes a link to the main website; there you can get an idea of what will happen, the schedule, and get your hands on some tickets so that you can get it in your calendar and prepare yourselves.&nbsp;</p>\n\n\n\n<p>The second thing I want to share is for all of our polyglots out there. The French team is planning a translation day coming up on April 30. I will share a link to that as well so that you can get an idea of what that takes if you&#8217;re feeling like you want to do some translation work. The third thing I want to share is that the Indian community in Pune actually started a new meetup series. It is a translation work along self-study &#8211; also for all of our polyglots out there. I would love to see as many people as are interested in both learning about how to do translations and certainly translating WordPress get registered for that. A final thing I want to share with you all is that if you are curious about what full site editing features will be included in the 5.8 release, that&#8217;s the WordPress release that&#8217;s coming out in the middle of July, you can check out my recap and recording of the demo that was held with Matt, Matias, and the rest of the team. There’s are also a number of other posts of next step ideas that I will share in the show notes as well.</p>\n\n\n\n<p>11:51</p>\n\n\n\n<p>That, my friends, is your small list of big things. Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Become an Early Adopter With the Gutenberg Plugin\";s:7:\"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://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\";s: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, 21 Apr 2021 21:03: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";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: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=10164\";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:372:\"Copy by Anne McCarthy (@annezazu) and Design by Mel Choyce-Dwan (@melchoyce) In WordPress circles (whether it’s your local meetup, a trusted publication, or your networking group), you may have heard terms like Core Editor, Gutenberg, and the Block Editor used interchangeably over the last four years. And if you’re following contributor work on the project [&#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:4695:\"\n<p><strong><em>Copy by Anne McCarthy (<a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>) and Design by Mel Choyce-Dwan (<a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>)</em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=632%2C354&#038;ssl=1\" alt=\"\" class=\"wp-image-10165\" width=\"632\" height=\"354\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=1024%2C575&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=768%2C431&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>In WordPress circles (whether it’s your local meetup, a trusted publication, or your networking group), you may have heard terms like Core Editor, Gutenberg, and the Block Editor used interchangeably over the last four years. And if you’re following contributor work on the project itself, you may also have heard some additional nuances—Gutenberg plugin, Gutenberg, or Block Editor.&nbsp;</p>\n\n\n\n<p>It can get a little confusing, so let’s take a look at four terms that will help you find your way:&nbsp;</p>\n\n\n\n<ul><li>WordPress &#8211; WordPress refers to the open source software but also to the community that surrounds it.&nbsp;</li><li>Gutenberg &#8211; Gutenberg is the code name for a multi-year project to update editing areas for the WordPress software.</li><li>Editor &#8211; The editor refers to a section of the software that allows you to update content on your site’s posts and pages.&nbsp;</li><li>Gutenberg Plugin &#8211; The Gutenberg plugin is where early work to update the editor is shared.</li></ul>\n\n\n\n<h2>The Gutenberg Plugin</h2>\n\n\n\n<p>Now that we’ve cleared up the definitions, let’s talk about the plugin. When might you use it? What would you use it for? You can think of it as an early access program or a “WordPress lab.” The plugin is updated every two weeks, which means that bugs that have been reported are often fixed and that what you see changes rapidly.&nbsp;</p>\n\n\n\n<p>The Gutenberg plugin also contains features that aren’t yet ready for their WordPress debut but are ready for curious users to test and provide feedback. This is a common practice that allows stable features to make it to your site in WordPress releases while allowing experimental features to be tested and refined. To get a sense of whether using the Gutenberg Plugin might be something you want to explore to get access to earlier features, check out the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">“What’s New” release posts </a>and the <a href=\"https://make.wordpress.org/core/tag/core-editor-improvement/\">Core Editor Improvement post series</a>. </p>\n\n\n\n<h2>Do I Need the Plugin to Use Gutenberg?</h2>\n\n\n\n<p>It depends on your comfort level! Generally speaking, it is not recommended to use the plugin on a site that has launched and is actively in use unless you’re very comfortable with the code side of WordPress. Fortunately, each WordPress release comes ready to go with <a href=\"https://developer.wordpress.org/block-editor/handbook/versions-in-wordpress/\">multiple versions of the Gutenberg plugin</a>.&nbsp;</p>\n\n\n\n<p>But if you are a keen beta tester who loves reporting feedback, or you feel comfortable navigating how to opt-in/out of the experimental aspects of the plugin, here are a few reasons you might want to dig into what the Gutenberg Plugin has to offer:</p>\n\n\n\n<ul><li>Test new features and give helpful feedback. For example, you can use the plugin to <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/how-to-test-fse/\">help test Full Site Editing</a>.&nbsp;</li><li>Get early access to the latest &amp; greatest while navigating when to opt-in or out of experimental features.&nbsp;</li><li>Prepare for the future whether you’re a theme author, plugin developer, agency owner, etc.&nbsp;</li></ul>\n\n\n\n<p><em>Do you use the Gutenberg plugin and </em><a href=\"https://github.com/WordPress/gutenberg/issues\"><em>share feedback on GitHub</em></a><em>? Thank you! This kind of feedback is what helps ensure stability in what’s shipped in WordPress releases.&nbsp;</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\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:\"10164\";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: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:48:\"WordPress 5.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Apr 2021 03:05:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10144\";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:365:\"WordPress 5.7.1 is now available! This security and maintenance release features 26 bug fixes in addition to two security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated. WordPress 5.7.1 is a short-cycle security and maintenance release. The next [&#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:12:\"Peter Wilson\";s: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:8461:\"\n<p>WordPress 5.7.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">26 bug fixes</a> in addition to two security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.1 is a short-cycle security and maintenance release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can download WordPress 5.7.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Two security issues affect WordPress versions between 4.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 4.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Thank you <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an XXE vulnerability within the media library affecting PHP 8.</li><li>Thanks <a href=\"https://mikaelkorpela.fi/\">Mikael Korpela</a> for reporting a data exposure vulnerability within the REST API.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> and the WordPress security team for their work on these issues.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-1/\">version 5.7.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.7.1 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.7.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkoo/\">dkoo</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</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/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</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:\"10144\";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:30:\"People of WordPress: Tyler Lau\";s:7:\"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:65:\"https://wordpress.org/news/2021/04/people-of-wordpress-tyler-lau/\";s: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, 13 Apr 2021 13:47: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:8:\"category\";a:3:{i:0;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:1;a:5:{s:4:\"data\";s:16:\"ContributorStory\";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:17:\"WordPress journey\";s:7:\"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=10102\";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:117:\"In this People of WordPress contributor story, we chat with Tyler Lau from Kansas, US, on his journey 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s: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:10363:\"\n<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<h2><strong>Embrace Who You Are and Your Journey</strong></h2>\n\n\n\n<p>In this People of WordPress contributor story, we chat to Tyler Lau from the US on his relationship building work in marketing and his WordPress journey.</p>\n\n\n\n<p>Read on to discover his story which shows it is often what you have learned from negative experiences in your life that can make you a major asset to a product team.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-thumb.jpg?resize=632%2C464&#038;ssl=1\" alt=\"Tyler Lau stood in front of a colorful mural\" class=\"wp-image-10116\" width=\"632\" height=\"464\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-thumb.jpg?zoom=2&amp;resize=640%2C470&amp;ssl=1 1280w, https://i1.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-thumb.jpg?zoom=3&amp;resize=640%2C470&amp;ssl=1 1920w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2><strong>An Entrepreneurial Mindset</strong></h2>\n\n\n\n<p>Tyler recalls he always had a knack for spotting a enterprise ideas. As an industrious seven-year-old, he was already finding ways to make sales during the school breaks.&nbsp;</p>\n\n\n\n<p>While many entrepreneurs have similar stories, Tyler’s path took many turns before he discovered and thrived in the WordPress community.</p>\n\n\n\n<p>He was drawn to both the software and the community that surrounds it from his search for personal and professional freedom. He ultimately was able to combine his various business interests and people skills into professional marketing work.</p>\n\n\n\n<h2><strong>Using your skills to uncover your journey</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-2.jpg?resize=632%2C758&#038;ssl=1\" alt=\"Tyler Lau pictured sat on a chair using his mobile phone in his social media work\" class=\"wp-image-10118\" width=\"632\" height=\"758\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-2.jpg?zoom=2&amp;resize=640%2C768&amp;ssl=1 1280w, https://i0.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-2.jpg?zoom=3&amp;resize=640%2C768&amp;ssl=1 1920w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Tyler’s current role is as a Marketing Relationship Builder, based in Kansas, USA. His responsibilities span across all digital properties and products, leveraging his broad set of business and people skills.</p>\n\n\n\n<p>These skills are amplified by his creativity and adaptability. Tyler says that one reason he is always looking for new projects is his Attention Deficit Hyperactivity Disorder (ADHD), a diagnosis he received in 2005.</p>\n\n\n\n<p>In an industry built by programmers and developers who often have a strong sense of focus, Tyler felt that someone with ADHD wouldn’t be seen as a natural fit. He found the WordPress community to be a place where everyone can find the right spot for their unique skills. Tyler’s skill is people, and this has translated into many opportunities and responsibilities in his work life. His skills have also helped him give back to the WordPress community as a speaker and volunteer, and through multiple contributor days.</p>\n\n\n\n<h2><strong>Relationship-building as a career</strong></h2>\n\n\n\n<p>Most of Tyler’s experience was in the restaurant industry, and his resume did not exactly point to a career in tech. But the service industry actually prepared him well for everything he has taken on since.</p>\n\n\n\n<p>When he is at work events, he meets people from across the world and builds connections with them. As an extrovert, he enjoys this and couldn’t imagine a job where he was isolated from getting to know others and relationship-building.</p>\n\n\n\n<p>Understanding people and being able to operate in any setting are key competencies. Social skills and tact are useful for community building in the WordPress space too, and in Tyler’s life at different times it has been necessary for survival. </p>\n\n\n\n<h2><strong>The true meaning of freedom</strong></h2>\n\n\n\n<p>In the WordPress community, the concept of freedom comes up often. WordPress is built on GPL, free software, and open-source values. Practically speaking, anyone can work remotely or be their own boss to gain more freedom in work and life.&nbsp;Tyler feels that he never fitted into a traditional work mould. With his strong focus on freedom, he found this resonated with the freedom and opportunities he believes WordPress provides him and thousands of others.</p>\n\n\n\n<p>Tyler describes how in 2013 his ‘inner opportunist’ got him into trouble. After dropping out of college following a brain aneurysm, he needed capital to fund his first startup.&nbsp;He shares that he found a quick but unlawful way to make money. Alongside this between shifts as a waiter, he worked on prototypes for his first product. The company was growing fast, and to protect his patents and take research and development to the next level, he had to work hard. Everything came to a halt when some of the actions he took resulted in being sent to prison.  </p>\n\n\n\n<p>He says that meeting other inmates reminded him that he was in a much better situation than most. He was educated, well-off, loved, and knew he had a future once he was released. He found that many inmates never graduated from high school and were computer illiterate. While inside, Tyler taught subjects like science, math, writing, reading, and social studies. He found that due to the lack of skills and support, many inmates would struggle upon release. He believes getting the mental health support and job training needed to thrive after prison is not easy for many.</p>\n\n\n\n<p>“<em>There’s more to freedom than just being on the outside. You also need a sense of agency and enfranchisement,</em>” says Tyler. He considered his sense of purpose and support network were plenty to keep him going and was ready to take on his next (legal) business challenge as soon as he could.</p>\n\n\n\n<h2>Going forward positively&nbsp;</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?resize=632%2C632&#038;ssl=1\" alt=\"Tyler Lau portrait picture\" class=\"wp-image-10139\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?w=640&amp;ssl=1 640w, https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The idea that your past doesn’t define you and you can choose to embrace it, is a key driver for Tyler.</p>\n\n\n\n<p>He describes himself as an outlier in many ways. He recalls how politics influenced his life from the day he was born. Tyler’s father is a semi-dissident Chinese visual anthropologist, his mother is an art professor who left her home country of Japan to break free from traditional Japanese gender roles. Tyler feels he inherited a lot of this fearlessness.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>I’ve never fitted in, and yet this is what makes me able to adapt to most situations and relate to just about anyone. I embrace my eclectic, dissonant past and see beauty in the person those experiences shaped me to be</em>,” says Tyler.&nbsp;</p></blockquote>\n\n\n\n<p>Now, he’s able to put those skills to good use in the WordPress community and beyond.&nbsp;</p>\n\n\n\n<p>He says: “<em>Regardless of your physical abilities, mental health struggles, upbringing, and even your run-ins with the law, no one is excluded from carving their place in the WordPress industry</em>”.<br></p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p>Thank you to Tyler Lau (<a href=\'https://profiles.wordpress.org/tylermaximus/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>tylermaximus</a>) for sharing his #ContributorStory.</p>\n\n\n\n<p>Thanks to Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Olga Gleckler (<a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Yvette Sonneveld (<a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>), Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for working on the People of WordPress series.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/Y3odYTyvSfJbVxUxUWEgKxOprox2zxVwhk7_vdW-AIs4IlE-jK0Zt1itCj867x0dIAbIiK-VeuTLMZr6BjNEY0fkTf--4dT1hkLbnGtsPFNfyrVBYIN59IirTkNnqiQgqxk6E1MI\" alt=\"HeroPress logo\" /></figure>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by&nbsp;</em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our&nbsp;<a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a>&nbsp;series.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress</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:\"10102\";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: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:30:\"WP Briefing: Who Is 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:52:\"https://wordpress.org/news/2021/04/who-is-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Apr 2021 14:36:23 +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: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:\"\";}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=10099\";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:\"In this episode, Josepha explores the five groups within the WordPress ecosystem and provides a high-level example of how they interact and support one another. As always, stay tuned for the small list of big things and a contributor highlight.  \";s: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/2021/04/WP-Briefing-006.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9292:\"\n<p>In this episode, Josepha explores the five groups within the WordPress ecosystem and provides a high-level example of how they interact and support one another. As always, stay tuned for the small list of big things and a contributor highlight.&nbsp;&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li>Get to know<a href=\"https://make.wordpress.org/\"> WordPress Teams</a></li><li><a href=\"https://wordpress.tv/2017/12/10/josepha-haden-beginners-guide-to-contributions/\">Five Steps of Volunteer Engagement </a></li><li><a href=\"https://twitter.com/CoachBirgit/status/1339516878495117313\">Community Highlight </a></li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica 2021 Online</a> (<a href=\"https://centroamerica.wordcamp.org/2021/sesiones/\">Schedule</a>)</li><li><a href=\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\">So you want to make block patterns?</a></li><li><a href=\"https://docs.google.com/spreadsheets/d/1h73xMwjSRkJJsn7ooiwXFeZpd0hxXh26pJ7qXzI5iUg/edit#gid=0\">Gutenberg Tutorial sign-up</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10099\"></span>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>In the first episode of this podcast, I said that there&#8217;s a lot that goes into WordPress, that&#8217;s really hard to see. One of the hardest things to see about the WordPress project as you get started is the overall structure. There is quite a bit of documentation that can clarify the basics: the names of teams, what they work on, and where, and when they meet. The way that they influence and support each other can really feel like a bit of a mystery. So today, I&#8217;m going to break down the WordPress community into five big groups; I want you to keep a couple of things in mind.&nbsp;</p>\n\n\n\n<p>Firstly, these are high-level and based on my observations. Each of these groups can be further broken down into subgroups. So while you may not feel represented in this exact five, you are included if you were to dig a little bit deeper. The second thing to keep in mind is that the makeup of these groups is pretty fluid. Many community members find themselves in more than one group, but generally not far off. Some group two folks end up in group three, depending on the situation, people in group four can also end up in group five, and so on. As with so many things that I share, I&#8217;m not trying to insist that one size fits all. I&#8217;m not trying to put the WordPress community into a box. This is just a basic framework to understand how it all fits together. Alright, are you ready? I&#8217;m ready. Let&#8217;s do it!</p>\n\n\n\n<p>Okay, I have a broad definition of the community, which I have mentioned before. I believe that the community is anyone who has interacted with WordPress, whether they know it or not. So, I&#8217;ll start from way out there and work my way in that first group; we’re going to call our <strong>Visitors</strong>.&nbsp;</p>\n\n\n\n<p><strong>Visitors</strong> are people who arrive at a WordPress site to gain information or engage in an activity. Sometimes they know it&#8217;s a WordPress site, but most of the time, they don&#8217;t. The second group are <strong>Users</strong>, people who use WordPress as their CMS. So, that&#8217;s website builders, website designers, small businesses, content creators, and the list goes on and on. The third group I like to refer to is the <strong>Extenders</strong>. Those are people who extend WordPress through the creation of blocks, themes, plugins, and more. There are also people who teach WordPress to others through WordPress podcasts, and newsletters and tutorials. The fourth group I refer to as our <strong>Contributors</strong> is the people who contribute to the open source software and the infrastructure supporting it, but not necessarily the same people who contribute directly to their own product. And then there&#8217;s group five, <strong>Leaders</strong>. Those are people who help drive the vision and strategy for WordPress; the most notable member of that group is of course, Matt Mullenweg. And I&#8217;m also in that group.&nbsp;</p>\n\n\n\n<p>Each of these groups directly influenced the groups on either side. For example, a WordPress user is affected by both visitors and extenders. Imagine a content creator who shares their passion for photography through a WordPress site; this photographer may have visitors that need to purchase photos. In response, the user now has a need to make it possible for visitors to purchase photos on a site. So they go to what we consider the extenders, people who have built a plugin that supports that need. And as a result, that user can install that on their site. And they have have satisfied the need of the visitors to their site, the people who now can purchase photos.&nbsp;</p>\n\n\n\n<p>There are a lot of examples like this in the WordPress project. Every small pattern that you see is mirrored in the larger patterns across our ecosystem. And every large pattern you see in the ecosystem can be seen among our teams. It&#8217;s pretty cool to look at really. So, why should this matter to you? From a very practical standpoint, this matters for anyone who&#8217;s trying to learn more about contributing to the WordPress project. These five groups mirror very closely the five steps of volunteer engagement that we see across the ecosystem and from a more philosophical standpoint, it&#8217;s just kind of nice to know who your neighbors are. Without the influence and support of the groups around us, it can be hard to know whether we&#8217;re on the right track or not. So take a look to your left and look to your right, and get to know your partners in this project.</p>\n\n\n\n<p>That brings us now to our community highlight, the segment where I share a note about contributors who have helped others along the way, or WordPress success story. This week&#8217;s highlight is from @CoachBirgit, <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a>, a longtime contributor and a friend of mine. Her success story goes like this.&nbsp;</p>\n\n\n\n<p>WordPress has allowed me as a mother of five to leave a toxic marriage for good.&nbsp;</p>\n\n\n\n<p>Later, the community picked me up when I became seriously ill.&nbsp;</p>\n\n\n\n<p>So I can say from the bottom of my heart, that working with WordPress has saved my life.</p>\n\n\n\n<p>And now our small list of big things. I&#8217;ve got three things for you this week. I think that they&#8217;re all very important. And I hope you check them all out. The first one is a reminder that word camp Central America is coming up on April 15 and 16th. If you have not registered for tickets, you still have time, I will share a link to the registration page and the schedule in the show notes below.&nbsp;</p>\n\n\n\n<p>The second thing on our small list of big things is that the Gutenberg 10.4 release is coming out later this week on April 14th. It&#8217;s an important release because it&#8217;s when we take a look at the current iteration of full site editing tools that we have, and decide if it&#8217;s ready to get into the WordPress 5.8 release. There&#8217;s a post that has a little more information about that which I will share in the show notes below as well. If you haven&#8217;t checked out the Gutenberg plugin lately, obviously I think it&#8217;s a good idea to do that in general, but definitely a good idea to check it out now.&nbsp;</p>\n\n\n\n<p>The third thing on our list today is a reminder to check out our most recent block pattern tutorial, I&#8217;ll share a link to that in the show notes. It&#8217;s this kind of tips and tricks, tutorial, the “show me how to do it,” kind of thing in the style of <a href=\"https://css-tricks.com/css-style-guides/\">CSS-Tricks</a>. If you or anyone that you know might be interested in sharing a similar style of tutorial, there&#8217;s a link to a form in that show notes as well so that you can share with us your name and the topic that you&#8217;re interested in. We&#8217;ll take a look and see if it&#8217;s something that we definitely need to make sure our users know how to do. So, that my friends is your small list of big things.&nbsp;</p>\n\n\n\n<p>Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10099\";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:57:\"\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:34:\"The Month in WordPress: March 2021\";s:7:\"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/2021/04/the-month-in-wordpress-march-2021/\";s: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, 03 Apr 2021 16:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10084\";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:319:\"This way of iterating improves WordPress and ties back to one of my favorite open-source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution. These words from Josepha Haden Chomphosy on [&#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:14:\"Hari Shanker R\";s: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:9821:\"\n<blockquote class=\"wp-block-quote\"><p>This way of iterating improves WordPress and ties back to one of my favorite open-source principles. The idea that with many eyes, all bugs are shallow. To me, that means that with enough people looking at a problem, someone is bound to be able to see the solution.</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">These words from <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> on the <a href=\"https://wordpress.org/news/2021/03/how-wordpress-improves/\">How WordPress Improves</a> episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a> point to the factors that differentiate building software in an open-source environment. Our updates this month are closely tied to the philosophy behind those core principles of open source software.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.7 released</h2>\n\n\n\n<p>WordPress <a href=\"https://wordpress.org/news/2021/03/esperanza/\">version 5.7</a> “Esperanza,” came out on March 9. The release offers fresher admin colors, several improvements to the block editor, single-click HTTP to HTTPS migration, and a new Robots API. Read more about it in the <a href=\"https://wordpress.org/news/2021/03/esperanza/\">release post</a>, the <a href=\"https://make.wordpress.org/core/2021/02/23/wordpress-5-7-field-guide/\">field guide</a>, and the <a href=\"https://make.wordpress.org/community/2021/03/12/meetup-group-resources-talking-points-for-wordpress-5-7/\">talking points post for meetup groups</a>. The Core Team has also <a href=\"https://make.wordpress.org/core/2021/03/30/5-8-pre-planning/\">started work on WordPress 5.8 pre-planning</a>.</p>\n\n\n\n<p>Want to contribute to WordPress 5.8? Join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>. The Core Team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Gutenberg Version 10.1 and 10.2 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/03/02/whats-new-in-gutenberg-10-1-3-march/\">Version 10.1</a> on March 3 and <a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">Version 10.2</a> on March 17.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2021/03/02/whats-new-in-gutenberg-10-1-3-march/\">Version 10.1</a> showcases significant improvements to reusable blocks, a clearer image toolbar, and spatial options for the social media block. <a href=\"https://make.wordpress.org/core/2021/03/17/whats-new-in-gutenberg-10-2-17-march/\">Version 10.2</a> offers block pattern options to display contents from the query block and removes writing prompts from empty paragraphs in the editor. It also adds width adjustment for spacer blocks in horizontal parent blocks and the ability to transform media and text blocks into columns.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in <a href=\"https://make.wordpress.org/chat/\">the Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/03/08/whats-next-in-gutenberg-march-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates. Don’t miss the monthly Gutenberg tutorial on <a href=\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-patterns/\">How to make block patterns</a>!</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p>March saw a plethora of updates to the <a href=\"https://make.wordpress.org/core/tag/full-site-editing/\">Full Site Editing</a> project!</p>\n\n\n\n<ul><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> published a <a href=\"https://make.wordpress.org/updates/2021/03/12/full-site-editing-pre-merge-overview/\">Full Site Editing pre-merge overview</a>. She shares the project’s current status, go/no-go dates for core merge, communication plans, and challenges.&nbsp;</li><li>March saw two calls for testing as part of the <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">Full Site Editing outreach program</a>. The first test of the month — <a href=\"https://make.wordpress.org/test/2021/03/09/fse-program-testing-call-3-create-a-fun-custom-404-%20page/\">creating a custom 404 page</a>,&nbsp; wrapped up successfully.&nbsp; Participate in the latest testing initiative — <a href=\"https://make.wordpress.org/test/2021/03/25/fse-program-testing-call-4-building-a-restaurant-themed-header/\">&nbsp;build a restaurant-themed website header</a> to help improve the future of WordPress! Deadline: April 8.&nbsp;</li><li>You can also find <a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march/\">high-level feedback on the FSE Program</a> in this March 2021 post.</li></ul>\n\n\n\n<h2>Proposal launched for a WordPress contributor handbook</h2>\n\n\n\n<p>A proposal has been kicked off on <a href=\"https://make.wordpress.org/updates/2021/03/16/proposal-a-wordpress-project-contributor-handbook/\">building a project-wide WordPress contributor handbook</a>. The handbook will have content around the WordPress project’s underlying philosophies and commitments, along with shared expectations on working together and building products. It will also contain modern open source best practices for WordPress.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>You can now schedule office hours with Matt Mullenweg and Josepha Haden as part of their <a href=\"https://make.wordpress.org/core/2021/03/12/q2-listening-hours-april-7th-2021/\">Q2 Quarterly listening hours initiative</a>. This quarter’s listening session is scheduled for April 7th, 2021, from <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210407T2200\">22:00</a>&#8211;<a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210408T0000\">24:00</a> UTC. Slots are still available — <a href=\"https://calendly.com/mmullenweg/team-lead-office-hours?month=2021-04&amp;date=2021-04-08\">sign up now</a>!&nbsp;</li><li>The Themes Team is working on <a href=\"https://make.wordpress.org/themes/2021/03/17/next-steps-on-themes-and-reviews/\">automating the theme review process</a>. The team has shared a detailed post on these changes and is requesting feedback.</li><li>The Core Team has <a href=\"https://make.wordpress.org/core/2021/03/05/dual-licensing-gutenberg-next-steps/\">kicked-off plans</a> on dual licensing Gutenberg under GPL and MPL.</li><li><a href=\"https://buddypress.org/2021/03/buddypress-7-2-1-security-release/\">Version 7.2.1</a> of BuddyPress (security release) is out! Update all your BuddyPresses!</li><li>The Docs Team shipped the <a href=\"https://make.wordpress.org/docs/2021/03/07/wordpress-documentation-style-guide-google-season-of-docs-2020-project-report-tacitonic/\">WordPress documentation style guide</a> as part of its Google Season of Docs 2020 effort. The team has also kicked off work on applying for <a href=\"https://href.li/?https://make.wordpress.org/docs/tag/season-of-docs-2021/\">Google Season of Docs 2021</a>!</li><li>The Polyglots Team is making <a href=\"https://make.wordpress.org/polyglots/2021/03/26/polyglots-training-working-group-update-2/\">significant progress on building their contributor training program</a>. The team is also requesting feedback on <a href=\"https://make.wordpress.org/polyglots/2021/03/30/request-for-feedback-polyglots-team-stats-dashboard/\">building their dashboard</a>.</li><li><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> shared an <a href=\"https://make.wordpress.org/updates/2021/03/19/experiment-coordinating-sponsored-contributor-teams/\">experiment to coordinate sponsored contributors</a> by adding them to a private Slack channel to offer them better support.</li><li>The Community Team announced its revamped <a href=\"https://make.wordpress.org/community/2021-wordpress-global-community-sponsorship-program/\">2021 Global Sponsorship Program</a>. The team also published a <a href=\"https://make.wordpress.org/community/2021/03/12/2021-financial-update-for-the-wordpress-community/\">financial update for WP Communities in 2021</a>.</li><li>The Core Team is moving ahead to <a href=\"https://make.wordpress.org/core/2021/03/04/discussion-dropping-support-for-ie11/\">drop support for Internet Explorer 11</a> for upcoming versions of WordPress.</li><li>The Design Team shared <a href=\"https://make.wordpress.org/design/2021/03/30/wordpress-org-patterns-directory/\">initial designs for the Block pattern directory</a>.</li><li>The <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> workspace briefly went down on March 30 due to a Slack ToS issue, which was subsequently resolved. More details on <a href=\"https://make.wordpress.org/updates/2021/03/30/journal-entry-wordpress-slack-workspace-unavailability/\">this explainer post</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</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:\"10084\";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:68:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"So you want to make block 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2021/03/so-you-want-to-make-block-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Mar 2021 17:01: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:8:\"category\";a:4:{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:\"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: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:\"\";}i:3;a:5:{s:4:\"data\";s:9:\"tutorials\";s:7:\"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:34:\"https://wordpress.org/news/?p=9995\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Learn how to make block 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:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2021/03/reusable-block.mp4\";s:6:\"length\";s:6:\"273436\";s:4:\"type\";s:9:\"video/mp4\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:58:\"https://wordpress.org/news/files/2021/03/waves-pattern.mp4\";s:6:\"length\";s:6:\"493389\";s:4:\"type\";s:9:\"video/mp4\";}}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:\"Beatriz Fialho\";s: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:22433:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"356\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=632%2C356&#038;ssl=1\" alt=\"\" class=\"wp-image-9998\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?w=1441&amp;ssl=1 1441w, https://i2.wp.com/wordpress.org/news/files/2021/03/Block-Patterns.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>If you&#8217;ve ever built something for the WordPress block editor — a theme or a plugin — you may have also heard about <strong>block patterns</strong>. </p>\n\n\n\n<p>Looking at the patterns that come bundled with WordPress, I thought it would be nice to dedicate to them a short post. They&#8217;re pretty nice, useful shortcuts when you know them, but there&#8217;s a good chance you may not know what they are or why you might want to use them.</p>\n\n\n\n<h2>What&#8217;s a block pattern?</h2>\n\n\n\n<p>Patterns are&nbsp;<strong>collections of pre-arranged blocks</strong>&nbsp;that can be combined and arranged in many ways making it easier to create beautiful content. They act as a head-start, leaving you to plug and play with your content as you see fit and be as simple as single blocks or as complex as a full-page layout.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"414\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=632%2C414&#038;ssl=1\" alt=\"\" class=\"wp-image-10021\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=1024%2C670&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=300%2C196&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=768%2C503&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=1536%2C1005&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?resize=2048%2C1340&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/block-library.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>They live in a tab in the block library. You can click or drag and you&#8217;re able to preview them with your site&#8217;s styles.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"413\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=632%2C413&#038;ssl=1\" alt=\"\" class=\"wp-image-10022\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=1024%2C669&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=300%2C196&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=768%2C502&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=1536%2C1003&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?resize=2048%2C1338&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/block-pattern.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>Basically, a block pattern is just a bunch of blocks put together in advance:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>	&lt;!-- wp:group --&gt;\n&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;\n&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;\n&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;\n&lt;!-- /wp:image --&gt;\n&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;\n&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;\n&lt;!-- /wp:quote --&gt;\n&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;\n&lt;hr class=\"wp-block-separator is-style-default\"/&gt;\n&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;\n&lt;!-- /wp:group --&gt;</code></pre>\n\n\n\n<p>That&#8217;s also how you create them: just use the block editor to configure a smattering of blocks to your liking, and the hard part&#8217;s over.</p>\n\n\n\n<h2>How do I get them in the block library?</h2>\n\n\n\n<p>There&#8217;s <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-patterns/\">more documentation in the handbook</a>, but what it boils down to is this:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n	\'my-plugin/my-quote-pattern\',\n	array(\n		\'title\'       =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n		\'categories\'  =&gt; array( \'text\' ),\n		\'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n		\'content\'     =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n	)\n);\n\n?&gt;</code></pre>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f446.png\" alt=\"👆\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> That&#8217;s a snippet of PHP, which means you can drop it in a WordPress plugin, or perhaps more simply, paste it into the <strong>functions.php</strong> file from your theme. Done:</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"430\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=632%2C430&#038;ssl=1\" alt=\"\" class=\"wp-image-10047\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=1024%2C696&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=300%2C204&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=768%2C522&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?resize=1536%2C1043&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?w=1908&amp;ssl=1 1908w, https://i2.wp.com/wordpress.org/news/files/2021/03/Quote.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>For patterns that include images, it&#8217;s worth thinking about where those are stored. The <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks theme</a> (which is a fancy name for &#8220;TwentyTwentyOne Blocks&#8221;) stores images in the theme library.</p>\n\n\n\n<h2>Now what?</h2>\n\n\n\n<p>The thing about a block pattern is, as soon as you insert it from the block library, it stops being <em>a cohesive unit</em> — now it&#8217;s just a smattering of blocks, detached from the pattern you created and meant to be customized to your liking. It&#8217;s a <em>shortcut</em>, not a <em>template</em>. That also means you don&#8217;t have to worry about switching themes or deactivating pattern plugins: the blocks you already inserted won&#8217;t go anywhere.</p>\n\n\n\n<p>That being said, if you like this one pattern so much you want to use it again and again, with no customization at all, you can make it into a <a href=\"https://wordpress.org/news/2021/02/gutenberg-tutorial-reusable-blocks/\">reusable block</a>:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls loop src=\"https://wordpress.org/news/files/2021/03/reusable-block.mp4\"></video></figure>\n\n\n\n<p>Reusable blocks are created, as the name implies, to be reused. The feature is a great way to store small bits of commonly used snippets that you can edit in one place to update in all. &#8220;<strong>Follow me on Twitter</strong>,&#8221; &#8220;<strong>Article series</strong>,<strong>&#8220;</strong> or <strong>&#8220;Subscribe to my podcast&#8221;</strong> are great examples of that.</p>\n\n\n\n<h2>What makes a good block pattern?</h2>\n\n\n\n<p>Patterns, as they ship today, are limited by the features available. If the block editor doesn&#8217;t allow you to customize letter-spacing, your block pattern can&#8217;t either. While the Global Styles project will expand what&#8217;s to blocks, in the meantime, we have to work with the available tools.</p>\n\n\n\n<p>Even then, with the most basic ingredients — color, photography, typography — it is possible to do a lot:</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://lh5.googleusercontent.com/W3RKCu5c7ONKnmuLdChmOhD40iZAFseq30i-qGwqFaq0dPTj_U5b1JXhhRR96-jRvJvKgC8BBZA4p_-EBYF-WoMRPoDLgCX8FG3RIWQhv6zX6-H7xBj4FZGGRm7cl_qdVgRy9G8q\" alt=\"\" /><figcaption>Three columns with images and text<br></figcaption></figure></div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"397\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=632%2C397&#038;ssl=1\" alt=\"\" class=\"wp-image-10036\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=1024%2C644&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=300%2C189&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=768%2C483&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=1536%2C965&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?resize=2048%2C1287&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/Media-and-text-with-image-on-the-right-1.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Media and text with image on the right</figcaption></figure></div>\n\n\n\n<p>I designed these patterns to potentially land in WordPress core, which all have a few properties in common:</p>\n\n\n\n<h3><strong>They share a theme.</strong></h3>\n\n\n\n<p>You can think of a pattern as a section of a website: it is meant to be part of a whole, and so it works best when it can exist in the context of other patterns that share the same theme. There are a few sharing a Nature theme in the patterns above, a few sharing an Art theme, and others sharing an Architecture theme. When seen together, it becomes easier to see how you might be able to piece together multiple pages of your site, one page at a time.</p>\n\n\n\n<figure class=\"wp-block-gallery columns-2\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"406\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=632%2C406&#038;ssl=1\" alt=\"\" data-id=\"10033\" data-full-url=\"https://wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png\" data-link=\"https://wordpress.org/news/?attachment_id=10033\" class=\"wp-image-10033\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=1024%2C658&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=300%2C193&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=768%2C493&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=1536%2C987&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?resize=2048%2C1315&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2021/03/Large-header-with-text-and-a-button.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"405\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=632%2C405&#038;ssl=1\" alt=\"\" data-id=\"10034\" data-full-url=\"https://wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png\" data-link=\"https://wordpress.org/news/?attachment_id=10034\" class=\"wp-image-10034\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=1024%2C657&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=300%2C193&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=768%2C493&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=1536%2C986&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?resize=2048%2C1314&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-with-image-on-the-right.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li></ul></figure>\n\n\n\n<h3><strong>They share a minimalist color palette.</strong></h3>\n\n\n\n<p>By being parts of a whole, patterns will inevitably land in a context that uses different colors. With a reduced color palette, there&#8217;s both a better chance of fitting in and less to customize to make it just right.</p>\n\n\n\n<figure class=\"wp-block-gallery columns-2\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"535\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=632%2C535&#038;ssl=1\" alt=\"\" data-id=\"10042\" data-full-url=\"https://wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg\" data-link=\"https://wordpress.org/news/?attachment_id=10042\" class=\"wp-image-10042\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=1024%2C867&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=300%2C254&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=768%2C651&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?resize=1536%2C1301&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?w=1903&amp;ssl=1 1903w, https://i2.wp.com/wordpress.org/news/files/2021/03/Heading-and-a-paragraph.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" width=\"632\" height=\"271\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container.jpg?resize=632%2C271&#038;ssl=1\" alt=\"\" data-id=\"10043\" data-full-url=\"https://wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg\" data-link=\"https://wordpress.org/news/?attachment_id=10043\" class=\"wp-image-10043\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=1024%2C439&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=300%2C129&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=768%2C330&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=1536%2C659&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?resize=2048%2C879&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/03/Media-text-in-a-full-height-container-scaled.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></li></ul></figure>\n\n\n\n<h3><strong>The best patterns <strong>do things you might have not done otherwise</strong>.</strong></h3>\n\n\n\n<p>Whether that&#8217;s images offset to create a unique silhouette, or just using less visible features (like fixed positioning in the Cover block), it&#8217;s a way to surface creativity.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Tip: You can use any block in your patterns, including blocks that came from a plugin. And if that block is in the block directory, it will prompt you to install it with one click if it&#8217;s missing from your self-hosted WordPress:</em></p></blockquote>\n\n\n\n<figure class=\"wp-block-video\"><video controls loop src=\"https://wordpress.org/news/files/2021/03/waves-pattern.mp4\"></video></figure>\n\n\n\n<h2>Here’s a plugin for you</h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php \n/*\nPlugin Name: Quote Pattern Example Plugin\n*/\n\nregister_block_pattern(\n	\'my-plugin/my-quote-pattern\',\n	array(\n		\'title\'       =&gt; __( \'Quote with Avatar\', \'my-plugin\' ),\n		\'categories\'  =&gt; array( \'text\' ),\n		\'description\' =&gt; _x( \'A big quote with an avatar\".\', \'Block pattern description\', \'my-plugin\' ),\n		\'content\'     =&gt; \'&lt;!-- wp:group --&gt;&lt;div class=\"wp-block-group\"&gt;&lt;div class=\"wp-block-group__inner-container\"&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;!-- wp:image {\"align\":\"center\",\"id\":553,\"width\":150,\"height\":150,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"is-style-rounded\"} --&gt;&lt;div class=\"wp-block-image is-style-rounded\"&gt;&lt;figure class=\"aligncenter size-large is-resized\"&gt;&lt;img src=\"https://blockpatterndesigns.mystagingwebsite.com/wp-content/uploads/2021/02/StockSnap_HQR8BJFZID-1.jpg\" alt=\"\" class=\"wp-image-553\" width=\"150\" height=\"150\"/&gt;&lt;/figure&gt;&lt;/div&gt;&lt;!-- /wp:image --&gt;&lt;!-- wp:quote {\"align\":\"center\",\"className\":\"is-style-large\"} --&gt;&lt;blockquote class=\"wp-block-quote has-text-align-center is-style-large\"&gt;&lt;p&gt;\"Contributing makes me feel like I\\\'m being useful to the planet.\"&lt;/p&gt;&lt;cite&gt;— Anna Wong, &lt;em&gt;Volunteer&lt;/em&gt;&lt;/cite&gt;&lt;/blockquote&gt;&lt;!-- /wp:quote --&gt;&lt;!-- wp:separator {\"className\":\"is-style-default\"} --&gt;&lt;hr class=\"wp-block-separator is-style-default\"/&gt;&lt;!-- /wp:separator --&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- /wp:group --&gt;\',\n	)\n);\n\n?&gt;</code></pre>\n\n\n\n<p>In case you want to make patterns, this example plugin features two of the patterns you saw above. Drop it in your plugins folder and they should show up in your block library.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" width=\"632\" height=\"966\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=632%2C966&#038;ssl=1\" alt=\"\" class=\"wp-image-10062\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=670%2C1024&amp;ssl=1 670w, https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?resize=196%2C300&amp;ssl=1 196w, https://i1.wp.com/wordpress.org/news/files/2021/03/Captura-de-ecra-2021-03-30-as-11.00.39.png?w=692&amp;ssl=1 692w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Installed pattern under &#8220;Text&#8221; Category</figcaption></figure></div>\n\n\n\n<p>Feel free to tweak it, customize it, and make it yours. It’s GPL, after all!</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><em>Thank you <a href=\'https://profiles.wordpress.org/joen/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joen</a> for the help writing this post.</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:4:\"9995\";s: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:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 08 May 2021 23:48:43 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 04 May 2021 15:00:07 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:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20201017055008\";}','no'),(1400,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1620560924','no'),(1401,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1620517724','no'),(1402,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1620560924','no');
INSERT INTO `wpiy_options` VALUES (1403,'_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:133:\"Gutenberg Times: Introduction to Global Styles, Block-based Themes and Two weeks of virtual WordPress events – Weekend Edition #168\";s:7:\"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=17764\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"https://gutenbergtimes.com/introduction-to-global-styles-block-based-themes-and-two-weeks-of-virtual-wordpress-events-weekend-edition-168/\";s: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:16106:\"<p>Howdy,  my friends! </p>\n\n\n\n<p>Hope you are all well. This week was a little less hectic, nevertheless again lots of information to digest about the block-editor and the upcoming WordPress 5.8 release. </p>\n\n\n\n\n\n<p>Today, you&#8217;ll find some great actionable tutorial, articles and tools. Again, I marvel at the extraordinary generosity of the people in the WordPress community from around the World. If you find something that&#8217;s useful to you, please let the authors. Most of them have a Twitter account that&#8217;s linked with the link to their contribution. </p>\n\n\n\n<p>Be well, be safe! </p>\n\n\n\n<p>Yours, 💕 <br />Birgit </p>\n\n\n\n<h2>Updates from the Gutenberg and Core Teams</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> posted the summary of finding of the <a href=\"https://make.wordpress.org/test/2021/05/06/fse-program-query-quest-summary/\">Query Quest</a>. This time, a 3 or so dozen user from Japan took part in this call for testing.  Members on the Italian Polyglott team translated the call, too. The circle of people testing has expanded quite a bit. </p>\n\n\n\n<p>McCarthy also had two reminders for you: </p>\n\n\n\n<ul><li>The second round Call for questions is still open &#8211; <a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\">send in your FSE question and concerns.</a> Deadline is May 12, 2021 </li><li>The next call for testing will be published on May 12, 2021 on the <a href=\"https://make.wordpress.org/test/\">Make blog of the Test team,</a> so clear out an afternoon in your week and reserve it for the next WordPress testing round. You&#8217;d be helping improve software, used by many, many millions of users. </li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Hector Pietro</strong>, technical lead on the Gutenberg project Phase 2, <a href=\"https://make.wordpress.org/core/2021/05/07/whats-next-in-gutenberg-may-2021/\">published the focus post for the team for May 2021.</a> There are no particular surprises listed, as the focus is getting a few projects ready to be merged with Core, but this post also aims beyond the feature Freeze on May 19 for block-editor features, RC 10.7. For Theme builders and developers, he also has a section on what particularly we all need to be aware of. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In anticipation, that the Widget block editor will land in WordPress Core, contributors <strong><a href=\"https://twitter.com/hellofromTonya\">Tonya Mork</a></strong> and <strong>Andrew Ozz</strong> published the <strong><a href=\"https://wordpress.org/plugins/classic-widgets/\">Classic Widget Screen plugin</a>,</strong> that allows you to opt-out of the new feature. Plugin and Theme developers can opt-out via this code snippet <code>remove_theme_support(\'widgets-block-editor\')</code>.<a href=\"https://github.com/WordPress/classic-widgets\"> Connect via GitHub</a> for issues and contributions. <strong>Justin Tadlock</strong> took the plugin for a spin and wrote a review: <a href=\"https://wptavern.com/classic-widgets-plugin-disables-wordpress-5-8s-upcoming-block-based-widgets-system\">Classic Widgets Plugin Disables WordPress 5.8’s Upcoming Block-Based Widgets System</a>. </p>\n\n\n\n\n<p>🎙️ <a href=\"https://gutenbergtimes.com/podcast/changelog-43-block-patterns-directory/\"><strong>Episode #43 is now available with Show notes and transcript</strong></a> Greg and I discussed Gutenberg 10.5, the Block Patterns Directory and a Call for Testing for WordPress 5.8 Release. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Subscribe to the Gutenberg Changelog via your favorite podcast apps! </strong><br />🎙️ <a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a> | <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a> | <a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a> | <a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a> | <a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a> | <br />🎙️ <a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a> | <a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a> | <a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a> | <a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a> </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>If you have been a listener, please <a href=\"https://lovethepodcast.com/gutenbergchangelog\">write a review </a>on iTunes, Stitcher, Podchaser or Castbox. We would love to read from you, and more reviews help with the distributions.</p>\n\n\n\n\n<p>Speaking of podcasts: Grzegorz (Greg) Ziokowski and I talked with <strong><a href=\"https://twitter.com/palmiak_fp\">Maciek Palmowski</a></strong> of WP Owl, about <strong><a href=\"https://wpowls.co/podcast/contributing-to-wordpress/\">Contributing to WordPress</a></strong>, the inaugural episode for the new podcast WP Owlcast. We talked about the ins and outs of contributing to WordPress &#8211; about the various teams, how to get started, how to pace yourself, Five For the Future and so much more. </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 2021&#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. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<h2>Building block-based Themes</h2>\n\n\n\n<p><a href=\"https://twitter.com/Adelina_Tuca\"><strong>Adelina Tuca</strong></a> of Themeisle interviewed <strong>Tammie Lister</strong>, design co-lead of Phase 1 of the block editor, now design lead at Extendify. <a href=\"https://themeisle.com/blog/tammie-lister-interview/\">&#8220;We Made Themes Become Plugins by Forcing Them to Have Functionality That Shouldn’t Be There</a>&#8220;, Lister is quoted. It&#8217;s a great discussion around the reset on how themes are developed with the block-editor and how it will not only change the creativity and productivity, but also user experience for content creators.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Riad Benguella </strong>posted an <strong><a href=\"https://riad.blog/2021/05/05/introduction-to-wordpresss-global-styles-and-global-settings/\">Introduction to WordPress’s Global Styles and Global Settings</a>.</strong> You can learn more about the thoughts behind the theme.json implementation for connecting your theme with all the block-editor features. For the first time in WordPress there is now a standard way for plugin block builders to be considerate about the theme developers design decisions and tap into its settings and styles. Be aware, although the theme.json implementation with come to WordPress core with 5.8, the Global Styles will still be experimental, so if you use them, they might change. </p>\n\n\n\n<p><strong><a href=\"https://twitter.com/carolinapoena\">Carolina Nymark</a></strong><a target=\"_blank\" href=\"https://marketplace.visualstudio.com/items?itemName=CarolinaNymark.wordpress-block-markup\" rel=\"noreferrer noopener\"> </a>turned  <a target=\"_blank\" href=\"https://marketplace.visualstudio.com/items?itemName=CarolinaNymark.wordpress-block-markup\" rel=\"noreferrer noopener\"><strong>her block markup snippets into </strong></a><strong><a target=\"_blank\" href=\"https://marketplace.visualstudio.com/items?itemName=CarolinaNymark.wordpress-block-markup\" rel=\"noreferrer noopener\">VS Code</a> extension</strong> with it, you can add blocks to your full site editing templates faster by typing the name of the block and have VS Code auto-complete it for you. </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 main (trunk) 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> </p>\n\n\n\n<h2>Block Editor for Content Creators</h2>\n\n\n\n<p>If you are just now evaluating if the block editor is mature enough for your future client projects, or the right tool for your content production processes, <strong>Sam Wendland</strong> for WordPress VIP has some more in depth information:  <a href=\"https://wpvip.com/2021/04/09/how-the-wordpress-gutenberg-block-editor-empowers-enterprise-content-creators/\"><strong>&#8220;How the WordPress Gutenberg Block Editor Empowers Enterprise Content Creators&#8221;</strong></a>.</p>\n\n\n\n<h2>Block building for Developers </h2>\n\n\n\n<p><a href=\"https://twitter.com/wpmark\"><strong>Mark Wilkinson</strong> </a> of Highrise Digital share the <a href=\"https://www.youtube.com/watch?v=7HZ\"><strong>10 lessons he learned from developing WordPress sites with the block editor</strong></a> in this video. He also posted a <a href=\"https://twitter.com/wpmark/status/1390594183271002112\">Thread on Twitter</a> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/kasparsdambis\"><strong>Kaspars Dambis</strong> </a>from <strong>XWP</strong> describes how to manage dependencies when creating your Gutenberg blocks in his post: <a href=\"https://xwp.co/javascript-dependencies-wordpress-blocks/\"><strong>Managing Javascript Dependencies for WordPress Blocks</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his tutorial <a href=\"https://millan.dev/2021/05/02/tutorial-convert-shortcodes-into-blocks\"><strong>Convert Shortcodes into blocks</strong></a> <strong><a href=\"https://twitter.com/milangd\">Milan Petrovic</a></strong> explains how to reuse shortcodes code and develop blocks for the block editor with support for sidebar settings</p>\n\n\n\n<h2>Upcoming WordPress Events</h2>\n\n\n\n<p><strong>10 &#8211; 14 May 2021</strong><br /><a href=\"https://pagebuildersummit.com?rpid=2&rpr=161\"><strong>Page Builder Summit 2021</strong></a><br />Gutenberg is part of it with the following sessions: </p>\n\n\n\n<ul class=\"has-small-font-size\"><li><strong>How to turn Gutenberg into a Page Builder with Stackable</strong> w/ Benjamin Intal</li><li><strong>Don’t Compete with Gutenberg &#8211; Embrace It</strong> w/ Danielle Zarcaro</li><li><strong>Google&#8217;s Core Web Vitals &#8211; Get Green With Gutenberg</strong> w/ Jake Pfohl</li><li><strong>Creating newsletters in the Gutenberg block editor</strong> w/ Lesley Sim</li><li><strong>Building Fast, Block-Based Landing Pages</strong> w/ Mike Oliver</li><li><strong>Panel &#8211; Preparing for the future of WordPress </strong>&#8211; Supported by WordPress.com &#8211; Marjorie Asturias, Anne McCarthy and Donna Cavalier</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong> May 22-23, 2021</strong><br /><strong><a href=\"https://neo.wordcamp.org/2021/\">WordCamp Northeast Ohio Region</a></strong><br />Two sessions and a Lighting talk about Gutenberg are on the <a href=\"https://neo.wordcamp.org/2021/schedule/\">schedule </a></p>\n\n\n\n<ul class=\"has-small-font-size\"><li><strong>Anatomy of a Block Theme for Full Site Editing </strong>w/ Daisy Olson </li><li><strong>Web Components in WP, Gutenberg and as HTML plugins</strong> w/ Craig West </li><li><strong>Lightning Talk: The power of reusable blocks w/ Daisy Olson</strong> </li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>May 24-28, 2021</strong><br /><strong><a href=\"https://wordsesh.com/?uid=6471\">WordSesh 2021</a></strong><br />The <a href=\"https://wordsesh.com/#schedule\">session schedule</a> is now available, too. Here is the list of Gutenberg talks: </p>\n\n\n\n<ul class=\"has-small-font-size\"><li><strong>Blazing Fast Block Development</strong> w/ Lee Shadle </li><li><strong>Building Custom Block</strong>s w/ Rob Stinson</li><li><strong>Block-Based Themes</strong> – <strong>The Future Of Full Site Editing In WordPress</strong> w/ </li><li><strong>How the Block Editor Makes It Easier to Build Custom Websites</strong> w/ Danielle Zarcaro </li><li><strong>Build your own Block-Based Theme</strong> w/ Daisy Olsen (Workshop)</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>June 7 &#8211; 9th, 2021</strong><br /><strong><a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe</a></strong><br />A virtual event and contributor day. <a href=\"https://europe.wordcamp.org/2021/call-for-sponsors/\">Call for sponsors is open.</a></p>\n\n\n\n<p><strong>June 20 &#8211; 26</strong><br /><strong><a href=\"https://japan.wordcamp.org/2021/\">WordCamp Japan</a></strong><br /><em>The schedule has been posted. Most sessions will be in Japanese, with exceptions, I think&#8230; </em></p>\n\n\n\n<p><strong>July 17 + 18th, 2021</strong><br /><strong><a href=\"https://santaclarita.wordcamp.org/2021/\">WordCamp Santa Clarita</a></strong><br />Calls for speakers (May 30th), sponsors, volunteers and organizers are open. </p>\n\n\n\n<p><strong>June 24 &#8211; 26, 2021</strong><br /><strong><a href=\"https://cochabamba.wordcamp.org/2021/\">WordCamp Cochabama</a></strong> (Colombia) </p>\n\n\n\n<p><strong>July 23, 2021</strong><br /><a href=\"https://www.wordfest.live/\"><strong>WordFest Live </strong></a>&#8211; <em>The </em>festival of WordPress<br />Call for Speakers is now open and submissions are due on May 24th, 2021</p>\n\n\n\n<p><strong>September 21 + 22, 2021</strong><br /><a href=\"https://2021.wpcampus.org/\"><strong>WPCampus 2021 Online</strong></a><br />&#8220;A free online conference for web accessibility and WordPress in higher education.&#8221; <a href=\"https://2021.wpcampus.org/proposals\">Call for Proposal is up</a> and proposal are due May 26, 2021</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On the<a href=\"https://wpcalendar.io/online/\"> <strong>Calendar for WordPress Online Events</strong> </a>you can browse a list of the upcoming WordPress Meetups, around the world, including WooCommerce, Elementor, Divi Builder and Beaver Builder meetups. </p>\n\n\n\n\n<p><em>Featured image: <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://www.flickr.com/photos/116417508@N06/32958126080\">&#8220;Tiny City Block Building&#8221;</a> by <a href=\"https://www.flickr.com/photos/116417508@N06\" target=\"_blank\" rel=\"noreferrer noopener\">Matt Henry photos</a> is licensed under <a href=\"https://creativecommons.org/licenses/by/2.0/?ref=ccsearch&atype=rich\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY 2.0</a></em></p>\n\n\n\n\n\n<hr class=\"wp-block-separator 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 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 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, 08 May 2021 20:23:41 +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: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:71:\"WPTavern: A Laptop and a Dream: Your Home Office Should Meet Your Needs\";s:7:\"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=116269\";s:7:\"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:185:\"https://wptavern.com/a-laptop-and-a-dream-your-home-office-should-meet-your-needs?utm_source=rss&utm_medium=rss&utm_campaign=a-laptop-and-a-dream-your-home-office-should-meet-your-needs\";s: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:4142:\"<img />\n\n\n\n<p class=\"has-drop-cap\">I began my journey into remote work while teaching English as a Second Language (ESL) in South Korea. I was 23 years old at the time. By day, I spent my time wrangling elementary and middle-school kids. At night, I was writing tutorials, building themes and plugins, and taking any work that landed on my [figurative] desk.</p>\n\n\n\n<p>My home office was my entire home, a spartan, one-bedroom/living/kitchen apartment. My workstation was a bed with several pillows piled up for back support.</p>\n\n\n\n<p>My first client contract was signed, developed, and completed on that bed. I made a mere $300 for creating a per-post thumbnail system for a popular blog (yes, I way undervalued my work). This was long before WordPress launched its featured image system.</p>\n\n\n\n<p>I was living the dream. Young and hungry, I took whatever odd jobs I could in preparation for eventually running my own WordPress-related business. Some nights, I would put in eight hours or more. On the weekends, I rarely actually slept in that bed. It had become my office chair. My lap was my desk.</p>\n\n\n\n<p>In the back of my mind, I suppose I always thought I would get a <em>proper</em> office. It would have all the bells and whistles like separate monitors for different tasks instead of tabs on a single screen. I would have the best mic and speaker setup &mdash; including the kitchen sink.</p>\n\n\n\n<p>After nearly a decade and a half, I realized I never needed all of that stuff. My laptop and I got along just fine. Of course, like many people, I tend to get stuck in my ways, looking for any excuse to not change.</p>\n\n\n\n<p>When I see articles like &ldquo;<a href=\"https://www.cnn.com/2021/03/18/success/home-office-design-setup-remote-work/index.html\">It&rsquo;s been a year. Here&rsquo;s what your home office should look like</a>,&rdquo; written by Kathryn Vasel for CNN Business, I tend to cringe before diving into it. There are some good takes in the article, such as getting natural light, taking breaks, and adjusting your posture.</p>\n\n\n\n<p>My idea of &ldquo;what your home office should look like&rdquo; is that it should be what makes you feel comfortable with the tools that allow you to do the job. For some folks, that is a laptop and a standing desk. For others, it includes specialized audio and video equipment.</p>\n\n\n\n<p>If you can afford it, I would at least recommend getting a good office chair. If you sit at a desk much of the day, skimp on the desk and other tools first.</p>\n\n\n\n<p>On the subject of affordability, it is also good to be mindful that a home office is a luxury, a privilege that few have. Like that small-town Alabama boy with his $400 Walmart computer in Korea, sometimes people just have to get by with what they have on hand.</p>\n\n\n\n<p>Now, 14 years later, I do have a home office. Like the first, it is spartan. It has the tools I need, and that is what I love about it. I do not spend all day in it. I prefer to move around from spot to spot.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Simple desk and chair.</li><li class=\"blocks-gallery-item\"><img />Cats included.</li></ul>\n\n\n\n<p>On days like today, those with mid-70s temps (Fahrenheit for all the non-Americans) and a slight breeze in the air, I like to sit on the back patio. I enjoy the birds singing. It is a good time of the year to watch the little ones learn to forage their own food. I keep an eye on the squirrels, making sure their mischievousness is limited to sneaking a few nuts from the bird feeders.</p>\n\n\n\n<p>It is also another reason I have always preferred a laptop over a desktop. Its utility allows me to lug it from the couch or desk to a spot outside amid nature.</p>\n\n\n\n<p>While much of the world&rsquo;s workforce is still figuring this whole remote, work-from-home thing out, many in the WordPress community have this down to a science. Or, at least, they know what works for them. I would love to hear and see (share pics in the comments &mdash; <a href=\"https://wordpress.org/support/article/embeds/#okay-so-what-sites-can-i-embed-from\">embeds are enabled</a>) what your home offices are like.</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, 07 May 2021 22:23: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:14:\"Justin Tadlock\";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:95:\"WPTavern: Classic Widgets Plugin Disables WordPress 5.8’s Upcoming Block-Based Widgets System\";s:7:\"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=116237\";s:7:\"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:229:\"https://wptavern.com/classic-widgets-plugin-disables-wordpress-5-8s-upcoming-block-based-widgets-system?utm_source=rss&utm_medium=rss&utm_campaign=classic-widgets-plugin-disables-wordpress-5-8s-upcoming-block-based-widgets-system\";s: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:4042:\"<p class=\"has-drop-cap\">Yesterday, WordPress released a core plugin named <a href=\"https://wordpress.org/plugins/classic-widgets/\">Classic Widgets</a>. Core contributors Tonya Mork and Andrew Ozz created the plugin under the WordPress Contributors account. It allows end-users to disable the upcoming block-based widgets system. Support is expected through 2022 or as long as necessary according to the plugin description.</p>\n\n\n\n<p>Decided last month by a small group of core leads following a demo, <a href=\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8\">WordPress 5.8 will ship several sub-components</a> from its Full Site Editing project. FSE encompasses several self-contained parts that grant users broader control over the design and layout of their sites. One of those pieces is an overhaul of the widgets system.</p>\n\n\n\n<p>Widgets will one day become a legacy feature of the platform. However, they are not disappearing any time soon. During the transition from the pre-block era of WordPress to the eventual incorporation of all the sub-components of FSE, users and theme developers will sometimes need smaller stepping stones. Block-based widgets give users more ways to work with blocks outside of the post content area without diving head-first into an entire block-based experience.</p>\n\n\n\n<p>This is the first time many in the larger WordPress user community will be exposed to blocks in a new context. The editor that launched in WordPress 5.0 focused solely on the post content. The widgets system in 5.8 turns classic sidebars into block containers.</p>\n\n\n\n<p>In short, users will be able to stick any block in any sidebar.</p>\n\n\n\n<img />Block-based widgets screen.\n\n\n\n<p>This is a welcome step in transitioning users in the long run, especially those who use classic themes, which is still the majority of all users. However, there are cases where the Classic Widgets plugin will be necessary. The biggest will be:</p>\n\n\n\n<ul><li>Broken themes or quirky output.</li><li>Users simply preferring the old system.</li></ul>\n\n\n\n<p>Whatever the case may be, the plugin handles the switch.</p>\n\n\n\n<p>For those wondering why the core development team is not making sure block-based widgets work with all themes, it is because the two systems are not exactly alike. Plus, every theme design handles its sidebar output in its own way. There is no way to ensure 100% coverage.</p>\n\n\n\n<p>Many themes will have no issues at all. Some sidebars, depending on the design, could entirely break down. More likely than broken, custom sidebar and widget designs could simply look &ldquo;off&rdquo; on the front end.</p>\n\n\n\n<p>For example, compare a Heading block followed by the Archives block (first image) against the classic Archives widget (second image) when using the Twenty Fifteen theme:</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Block &ldquo;widget&rdquo;</li><li class=\"blocks-gallery-item\"><img />Classic widget</li></ul>\n\n\n\n<p>The typography of the Heading is different, and there is too much space below it. That is not an end-of-the-world scenario. It is the sort of quirk that may be common with many themes, at least until theme authors have had time to push out updates.</p>\n\n\n\n<h2>What Happens When Activating the Plugin?</h2>\n\n\n\n<img />Classic widgets screen.\n\n\n\n<p class=\"has-drop-cap\">Classic Widgets has no settings screen or anything to configure. It is a set-it-and-forget-it plugin. Its goal is to simply return users to the traditional widgets system in which they are familiar.</p>\n\n\n\n<p>If you start using the new block-based widgets system, you will lose all of your widget blocks upon activating the plugin. There is no going back, so be sure this is what you want. The former blocks will not reappear if you change your mind and deactivate Classic Widgets.</p>\n\n\n\n<p>However, if you add traditional widgets to your theme&rsquo;s sidebars while the plugin is active, you will not lose them. They will still appear on both the front and back end if you deactivate the plugin.</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, 06 May 2021 21:39:24 +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:\"Justin Tadlock\";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:101:\"WPTavern: Dark Mode Plugin Repurposed and Renamed to WP Markdown Editor, Change Leaves Users Confused\";s:7:\"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=116107\";s:7:\"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:245:\"https://wptavern.com/dark-mode-plugin-repurposed-and-renamed-to-wp-markdown-editor-change-leaves-users-confused?utm_source=rss&utm_medium=rss&utm_campaign=dark-mode-plugin-repurposed-and-renamed-to-wp-markdown-editor-change-leaves-users-confused\";s: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:8671:\"<p class=\"has-drop-cap\">Last year, I asked Tavern readers if WordPress should <a href=\"https://wptavern.com/should-wordpress-notify-users-of-plugin-ownership-changes\">notify end-users when a plugin&rsquo;s owner changes</a>. The post was not entirely based on theory. There have been some cases of real-world confusion. The consensus from the comments on that post seemed to be that, yes, such notifications would be welcome.</p>\n\n\n\n<p>When I wrote that post, there was already another plugin changing hands. <a href=\"https://wordpress.org/plugins/dark-mode/\">Dark Mode</a>, which had grown in popularity in its earlier years, had a new owner, WPPool. There were no public notifications of this ownership change. A mere <a href=\"https://github.com/azizultex/Dark-Mode/issues/173\">GitHub issue filed</a>, a corner of the web that few users venture.</p>\n\n\n\n<p>Fast forward a few months, and Dark Mode had not only changed owners, but it also had a new name and set of features unrelated to the plugin&rsquo;s original promise. The plugin is now named WP Markdown Editor and bundles at least part of the commercially available <a href=\"https://useiceberg.com/\">Iceberg Editor plugin</a>. It is also a limited version in which users are prompted to upgrade for the complete feature set.</p>\n\n\n\n<img />WP Markdown Editor (formerly Dark Mode).\n\n\n\n<p>Iceberg is licensed under the GPL version 2, so it is legal for anyone to fork it. However, there does not seem to be any mention of the copyright, and only a few references to the original product remain in the source code.</p>\n\n\n\n<p>While I did not perform a line-by-line comparison, it is clearly a fork when examining both plugins. However, the company has also built upon it with new features.</p>\n\n\n\n<img />Iceberg Editor.\n\n\n\n<p>&ldquo;We have recently added productivity sounds, new fonts (more legibility and one for Dyslexic users), which we think definitely adds value to new users,&rdquo; said the WPPool Team<sup><a href=\"https://wptavern.com/feed#footnote-1\">[1]</a></sup>.</p>\n\n\n\n<p>WPPool <a href=\"https://wppool.dev/introducing-wp-markdown-editor/\">announced the WP Markdown Editor plugin</a> in November 2020. However, the post was written as if it was a new product. Technically, it was, but there was no mention of repurposing an existing plugin to launch the features.</p>\n\n\n\n<p>The company reached out to the Dark Mode plugin owner in August 2020, which seemed to have changed hands a couple of times, at least. &ldquo;The plugin was discontinued, lacking security updates, compatibility with latest PHP versions, and the project was abandoned,&rdquo; said the WP Pool Team.&rdquo; And, since the last few updates, it was apparent that Classic Editor is not going to stay the same. Gutenberg was the future, and we wanted to give users a Dark Mode for Gutenberg as well.&rdquo;</p>\n\n\n\n<p>WPPool was able to adopt the plugin. The company kept the Dark Mode feature original to the plugin. However, they eventually began tacking on new features.</p>\n\n\n\n<p>&ldquo;Our intention was to add more features on top of it,&rdquo; said the WPPool Team. &ldquo;Why not create a new plugin? Because the plugin was already being abandoned, and we thought why not add some more features, keep the old functionality intact as well, and put regular updates?&rdquo;</p>\n\n\n\n<p>The change clearly left some users frustrated and confused about what was happening with the plugin. Many had installed it in hopes of having a simple method of toggling on a dark mode for the WordPress admin interface.</p>\n\n\n\n<img /><a href=\"https://wordpress.org/support/plugin/dark-mode/reviews/\">Reviews</a> after the change.\n\n\n\n<p>The plugin now has an &ldquo;Only Dark Mode&rdquo; setting, an option that users can enable to remove the additional features. It is disabled by default.</p>\n\n\n\n<p>When asked about whether the addition of seemingly unrelated features abused user trust, the WPPool Team replied, &ldquo;The problem was, since the last few updates of Gutenberg and Classic Editor &mdash; Classic Editor uses an iframe to load its content. It&rsquo;s not possible for the Dark Mode plugin to serve the Dark Mode in Classic Editor anymore. That&rsquo;s why some users were really frustrated. We really tried hard to restore that functionality to Classic Editor as well, but the way it is, we couldn&rsquo;t find a way to invoke Dark Mode on Classic Editor.&rdquo;</p>\n\n\n\n<p>While some support questions and reviews indicate the frustration with losing Classic Editor support, many others questioned the addition of features that make little sense as part of a dark-mode plugin.</p>\n\n\n\n<p>&ldquo;This used to be a dark mode feature plugin, but now it&rsquo;s been turned into a Markdown editor,&rdquo; <a href=\"https://wordpress.org/support/topic/markdown-editor-3/\">wrote Derrick Tennant</a>, an earlier contributor to the plugin. &ldquo;A complete bait and switch.&rdquo;</p>\n\n\n\n<p>Another user named <em>rehoff</em> <a href=\"https://wordpress.org/support/topic/another-one-bites-the-dust-2/#post-14197364\">had similar concerns</a>, stating, &ldquo;I still believe that it is not ok to so radically repurpose an otherwise popular plugin. I find it misleading.&rdquo;</p>\n\n\n\n<p>Back to the original question I posed last year, another user summed up the answer with a review titled &ldquo;<a href=\"https://wordpress.org/support/topic/this-plugin-has-been-sold-for-sure/\">This plugin has been sold for sure</a>.&rdquo;</p>\n\n\n\n<p>In private, one person has said that it feels like the team is capitalizing on the plugin&rsquo;s active install base, which currently sits at 3,000+.</p>\n\n\n\n<p>Adding to the potential confusion, the company has a separate and unrelated plugin named <a href=\"https://wordpress.org/plugins/wp-dark-mode/\">WP Dark Mode</a>. A <a href=\"https://wordpress.org/support/topic/do-not-install-deceptive-developer/\">reviewer noted on that plugin</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This same developer had another plugin called Dark Mode. They apparently sold the plugin to someone and now it&rsquo;s a random Markdown plugin with a terrible UI. All of a sudden, this random Markdown editor that I don&rsquo;t want or need is on my site.</p><p>Who knows what this plugin will become when they get enough users and decide to CA$H IN AGAIN??</p><p>If you like having random plugins installed on your site, give it a whirl. Otherwise it may be best to look for a different solution.</p></blockquote>\n\n\n\n<p>This case is unique because the Dark Mode plugin was once a <a href=\"https://wptavern.com/dark-mode-is-possibly-coming-to-a-wordpress-dashboard-near-you\">feature proposal for core WordPress</a>. Daniel James, the original creator, started the process to make this a reality in 2018. There was support for the idea, but it never jumped the hurdles needed for inclusion or a more formal proposal.</p>\n\n\n\n<p>James put the plugin <a href=\"https://wptavern.com/dark-mode-wordpress-plugin-up-for-adoption\">up for adoption in 2019</a>, stating that he was stepping back from plugin development but hoped that someone would pick it up. David Gwyer <a href=\"https://wptavern.com/dark-mode-wordpress-plugin-up-for-adoption#comment-282848\">picked it up</a> shortly after, eventually making two updates to the plugin. The plugin&rsquo;s <a href=\"https://plugins.trac.wordpress.org/log/dark-mode/\">commit history</a> shows that Tennant started contributing several months later before WPPool landed on the scene.</p>\n\n\n\n<p>While Dark Mode was never officially endorsed by WordPress or given the green light for merging into the core platform, there was still a level of trust that some might expect from a plugin that was at least proposed as a feature.</p>\n\n\n\n<p>Perhaps this is one of those cases where an ownership-change notification would have been warranted, but that notice would not have solved the issues that came months later.</p>\n\n\n\n<p>The developers did note the new Markdown editor in the plugin&rsquo;s change log: &ldquo;New: Write post/ page with markdown syntax (Markdown Editor).&rdquo; However, it is doubtful the average user read or understood what that meant. Maybe a more thorough disclosure system is necessary, and would such a system cover cases where plugins are repurposed?</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p id=\"footnote-1\"><strong>1:</strong> I have attributed quotes to the &ldquo;WPPool Team&rdquo; throughout this article. I was able to reach the company through their Facebook chat. However, the team did not provide a person&rsquo;s name and role within the company for attribution. At the moment, I still do not know which employee(s) I spoke with directly.</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, 05 May 2021 22:51: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:14:\"Justin Tadlock\";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:87:\"WPTavern: Jetpack 9.7 Makes More Features Available without Connecting to WordPress.com\";s:7:\"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=116112\";s:7:\"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:219:\"https://wptavern.com/jetpack-9-7-makes-more-features-available-without-connecting-to-wordpress-com?utm_source=rss&utm_medium=rss&utm_campaign=jetpack-9-7-makes-more-features-available-without-connecting-to-wordpress-com\";s: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:2707:\"<p><a href=\"https://jetpack.com/2021/05/04/97-improvements-for-your-site/\">Jetpack 9.7</a> was released today with updates under the hood that ensure the plugin&rsquo;s blocks are compatible with the <a href=\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\">full-site editing</a> features coming in WordPress 5.8. It also changes how sites access features that require the WordPress.com infrastructure.</p>\n\n\n\n<p>A <a href=\"https://github.com/Automattic/jetpack/pull/19637\">pull request</a> merged in version 9.7 changes the connection flow to make Jetpack active as soon as the plugin enables a site level connection, instead of requiring a user to authenticate with WordPress.com in order for it to work. This is what the Jetpack team has been referring to as &ldquo;user-less&rdquo; in development.</p>\n\n\n\n<p>The <a href=\"https://github.com/Automattic/jetpack/pull/19614\">copy has been updated</a> for this step so that after Jetpack is connected on a site level, it says, &ldquo;Jetpack is activated! Unlock more amazing features by connecting a user account.&rdquo; </p>\n\n\n\n<p>Jetpack users who connect their sites will immediately have access to Stats, Site Accelerator, most Jetpack blocks, widget visibility, SEO tools, Related Posts, Likes, and many more modules. Other features, such as Publicize, Activity Log, Monitor, and Backup require you to authorize Jetpack to perform these actions on your behalf.</p>\n\n\n\n<p>A new documentation <a href=\"https://jetpack.com/support/why-the-wordpress-com-connection-is-important-for-jetpack/\">page</a> details why a WordPress.com connection is necessary for certain features, bringing more transparency to what has been a contentious topic in the past. The new page outlines which features are available for site connections versus authenticated WordPress.com accounts. These specific updates in 9.7 do not change any of the data or activity that Jetpack tracks or uses.</p>\n\n\n\n<p>The general public was not privy to the product discussion behind making more features immediately available to user-less accounts, but there are a few reasons this is a good business idea. It allows users to get started faster so they get hooked into using more features on their sites before being forced to connect to a WordPress.com account. This will likely reduce the number of users who install the plugin but decide not to move forward because of needing to connect an account.</p>\n\n\n\n<p>Jetpack 9.7 also brings performance improvements to the Carousel feature, several bug fixes for Instant Search, and more. The full list of enhancements and fixes can be found in the <a href=\"https://wordpress.org/plugins/jetpack/#developers\">changelog</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, 05 May 2021 03:35: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: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:84:\"WPTavern: It Is Time for WordPress Theme Authors To Step Up Their Block Pattern Game\";s:7:\"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=116137\";s:7:\"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:213:\"https://wptavern.com/it-is-time-for-wordpress-theme-authors-to-step-up-their-block-pattern-game?utm_source=rss&utm_medium=rss&utm_campaign=it-is-time-for-wordpress-theme-authors-to-step-up-their-block-pattern-game\";s: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:7703:\"<p class=\"has-drop-cap\">Going through my routine this week, I skimmed the latest WordPress theme releases and found a new project that supported the block editor.  It even shipped a few custom patterns. While the design was nothing extraordinary, it was a solid theme overall. However, after spending the better part of today writing about it, I did not think I could move forward with the story. Something was bugging me.</p>\n\n\n\n<p>It was the same thing I have felt with several others as of late. There were too many missed opportunities. The theme had the foundation, the underlying potential, to be more than it was.</p>\n\n\n\n<p>The theme had a commercial &ldquo;pro&rdquo; version that users could purchase. However, nearly every pro feature relied on old-school tactics of upselling extra theme options. The one exception was a block-related feature that will be free as part of the Global Styles component likely to ship with WordPress later this year.</p>\n\n\n\n<p>Where were the custom block styles? Where could a user snag some unique patterns? Extra nav menus, sidebars, color settings, and typography options are becoming less and less of a value-add for end-users. It is probably safe money right now, and I can understand the comfort of not taking too many chances.</p>\n\n\n\n<p>Theme authors need to start shifting gears. Upsells need to come in the form of features that will not be available from stock WordPress. Right now, that means building unique block patterns and styles.</p>\n\n\n\n<h2>Exploring Pattern Ideas</h2>\n\n\n\n<p class=\"has-drop-cap\">In the last month, I have been tinkering with custom patterns. While I was in the design and development business for over a decade, what I was able to accomplish with the block editor alone &mdash; using no custom code &mdash; and a well-rounded block-ready theme is merely scratching the surface. We have far better talent in the WordPress community, and I want to see their artistry unleashed.</p>\n\n\n\n<p>It all started with the WP Tavern <a href=\"https://wptavern.com/podcast\">Jukebox podcast</a> &mdash; you should check out episodes <a href=\"https://wptavern.com/podcast/1-josepha-haden-chomphosy-on-the-past-present-and-future-of-wordpress\">#1</a> and <a href=\"https://wptavern.com/podcast/2-anne-mccarthy-on-how-full-site-editing-will-impact-wordpress\">#2</a> if you have not heard them already. Nathan Wrigley, the new host, pushed me enough to put my design-and-dev cap back on to implement some features that he needed. Over the years, I have not worked much with podcasting or any type of audio. This was new territory for me. Ultimately, the podcast inspired me to think about audio patterns.</p>\n\n\n\n<p><em>What is possible with WordPress&rsquo;s editor today?</em></p>\n\n\n\n<p>I scoured the web for various layouts, looking for modern audio presentations. Numerous concepts were impossible for an end-user to implement from the editor alone. They would need extensive custom block styles from the themes themselves. And, there were several designs that I simply did not think could be done at all, but these typically had plugin-territory elements.</p>\n\n\n\n<p>However, I did find ideas that I could run with and make my own. I started with a simple audio file from <em>The Martian</em> soundtrack &mdash; I had re-watched the movie the night before and was on a David Bowie kick.</p>\n\n\n\n<img />Soundtrack single audio pattern.\n\n\n\n<p>It was simple. Just add Group, Columns, Image, Paragraph, Heading, Audio, and Social Icons blocks. I was happy with the result, and some of my Twitter followers <a href=\"https://twitter.com/justintadlock/status/1380199029955567623\">responded positively</a>.</p>\n\n\n\n<p>Inspired by the support, I created an alternative layout. It was even simpler by adding Cover, Paragraph, Heading, Audio, and Social Icons blocks.</p>\n\n\n\n<img />Audio embed pattern nested in a Cover block.\n\n\n\n<p>Based on the original pattern, I built one that used a SoundCloud embed instead of the Audio block. I also created another with some alterations that catered more toward podcasters.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>SoundCloud audio and podcasting patterns.\n\n\n\n<p>As I dived deeper into this project, the more capable I became at creating layouts. I began to understand what some of the limitations were and piecing everything together around them.</p>\n\n\n\n<p>One of the most problematic areas with the editor is that it does not hand over enough spacing control. Therefore, I had to make liberal use of the Spacer block, something I prefer not to use because it relies on pixel units and puts an extra <code>&lt;div&gt;</code> into the markup. To build some patterns, I had to become a little less of a purist and just use the available tools.</p>\n\n\n\n<p>That change in mindset opened some more possibilities. I built a couple more audio-related block patterns. They were, again, simple layouts, but I wanted to make them stand out visually with imagery that end-users could add. The goal is to give users one-click access to pre-designed sections, starting points where people can showcase their own creativity.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>DJ and musician block patterns.\n\n\n\n<p>The next step was to start thinking beyond audio patterns. There is so much more others can do in that space. I wanted to venture out a bit more.</p>\n\n\n\n<p>I have since built several other patterns like the following news-type article header that I would love to use on the Tavern in the future:</p>\n\n\n\n<img />News or data-driven article header pattern.\n\n\n\n<p>I could share more concepts, but this seems like an ideal place to stop. The goal is not to showcase my portfolio of patterns. It is to inspire our theme design community in hopes that they build something far better. I also wanted to show how easy it was to pop out a few patterns. Instead of hours of development time, many ideas were cut down to mere minutes. That is the power the block system provides today.</p>\n\n\n\n<p>When I wrote about the block system creating <a href=\"https://wptavern.com/block-system-will-create-more-commercial-opportunities-for-wordpress-theme-authors\">commercial opportunities for theme authors</a> in January, it was a theoretical post. This is a follow-up that puts it into a little more practice (without the actual selling, of course).</p>\n\n\n\n<p>Imagine, as a theme company, you are building a freemium theme for musicians. You might want to include a few base patterns for users to choose from. However, there is an endless number of alternatives you could offer as part of a pro package.</p>\n\n\n\n<p>I am sure there is already a theme author/company out there right now with a multi-purpose theme concept in mind that will eventually have hundreds of patterns. I can only hope that they have a solid categorization system or offer separate packages or imports.</p>\n\n\n\n<p>The <a href=\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory\">block pattern directory</a> is slated to land alongside WordPress 5.8. At first, it will primarily be core patterns. However, others will be encouraged to contribute over time. This is a welcome feature for the platform, but it will never match every theme design perfectly. Each theme has its own design nuances. Each has different methods of solving problems.</p>\n\n\n\n<p>The best patterns will come from theme authors themselves, especially when combined with custom block styles, packaged and marketed as part of their theme&rsquo;s experience. Developers can wait until the entire market catches up or jump ahead of the game.</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, 04 May 2021 23:08: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:14:\"Justin Tadlock\";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:54:\"WordPress.org blog: The Month in WordPress: April 2021\";s:7:\"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=10253\";s:7:\"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/2021/05/the-month-in-wordpress-april-2021/\";s: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:11441:\"<blockquote class=\"wp-block-quote\"><p>As WordPress grows, both in usage as a CMS and in participation as a community, it’s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS. </p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> on the “<a href=\"https://wordpress.org/news/2021/04/your-opinion-is-our-opportunity/\">Your Opinion is Our Opportunity</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the importance of co-development and testing for the continued growth and maintenance of WordPress. This month’s updates align closely with these ideas. Read on and see for yourself.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.7.1 is launched</h2>\n\n\n\n<p>WordPress security and maintenance release &#8211; <a href=\"https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\">5.7.1</a> came out in April. The release fixes two major security issues and includes 26 bug fixes. You can update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org.</p>\n\n\n\n<p>Want to contribute to WordPress 5.8? Check out the <a href=\"https://make.wordpress.org/core/5-8/\">5.8 Development Cycle</a>. To contribute to core, head over to <a href=\"https://core.trac.wordpress.org/\">Trac</a>, and<a href=\"https://core.trac.wordpress.org/report/6\"> pick a 5.8 ticket</a> –– more info in the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>. Don’t forget to join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>. The Core Team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&min=00&sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&min=00&sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Gutenberg Version 10.3, 10.4, and 10.5 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">version 10.3</a> on April 2, <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">version 10.4</a> on April 14, and <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">version 10.5</a> on April 30! <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">Version 10.3</a> improves the block toolbar and the navigation editor, whereas <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">version 10.4</a> adds block widgets to the customizer and improvements to the site editor list view. In <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">version 10.5</a>, you will find a set of new block patterns and enhancements to the template editing mode, along with the ability to embed PDFs.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/03/08/whats-next-in-gutenberg-march-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates. If you are unfamiliar with the Gutenberg plugin, <a href=\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\">learn more in this post</a>.</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p>Following the <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Full Site Editing (FSE) feature demo</a> hosted by <a href=\"https://profiles.wordpress.org/matveb/\">Mattias Ventura</a>, the project leadership decided that WordPress 5.8 will only include some FSE features, such as a template editor for pages/blank templates, a widget editor screen, and the theme.json mechanism. Other features like the Global Styles interface and Site Editor (managing all templates) will be made available later. The team has <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">started working on the next steps</a> in shipping these chosen FSE features with version 5.8.</p>\n\n\n\n<p>New to FSE? Check out <a href=\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\">this blog post</a> for a high-level overview of the project. You can help test FSE by participating in the <a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">latest FSE Outreach Program testing call </a>–– leave your feedback by May 5th. Want to participate in future testing calls? Stay updated by following the <a href=\"https://make.wordpress.org/test/2021/04/22/upcoming-fse-outreach-program-schedule/\">FSE outreach schedule</a>. You can also <a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\">submit your questions</a> around FSE right now.</p>\n\n\n\n<h2>WordCamp Europe 2021 is on the calendar</h2>\n\n\n\n<p>One of the most exciting WordPress events,&nbsp; <a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe 2021</a>, will be held online on June 7-9, 2021! Event organizers have opened up calls for <a href=\"https://europe.wordcamp.org/2021/call-for-sponsors/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2021/call-for-media-partners-and-supporters/\">media partners</a>. Free tickets for the event will be available soon — <a href=\"https://europe.wordcamp.org/2021/#subscribe-email\">sign up for email updates</a> to be notified when they are out!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>WordPress now powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">41% of the web</a>!</li><li><a href=\"https://make.wordpress.org/updates/2021/04/15/quarterly-updates-q1-2021/\">Q1 2021 updates from the WordPress project</a> have been published.</li><li>The Core Team discussed a <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/\">proposal</a> to treat Federated Learning of Cohorts (FLoC), a Google Chrome feature, as a security concern. The team <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/#comment-41207\">eventually decided</a> to track the status of the FLoC trial/implementation in a <a href=\"https://core.trac.wordpress.org/ticket/53069\">Trac ticket</a> and monitor periodically. </li><li>The Core Team will <a href=\"https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/\">remove Internet Explorer 11 support in WordPress version 5.8</a>. </li><li>The Community Team has opened up a <a href=\"https://make.wordpress.org/community/2021/04/26/discussing-the-path-to-in-person-wordcamps/\">discussion on the path to in-person WordCamps</a> and is requesting feedback from community members.</li><li>The Community Team is also <a href=\"https://make.wordpress.org/community/2021/04/19/discussion-companies-who-run-competitive-ads-against-wordpress-and-apply-to-sponsor-wordcamps/\">requesting feedback</a> on whether companies who run competitive ads against WordPress can apply to sponsor WordCamps. </li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica 2021</a> and <a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece 2021</a> were held successfully in April. Videos of WordCamp Centroamérica are now available <a href=\"https://wordpress.tv/event/wordcamp-centroamerica-2021/\">on WordPress.tv</a>! While you are at it, don&#8217;t miss this<a href=\"https://central.wordcamp.org/news/2021/04/29/making-a-great-online-conference-experience-at-wordcamp-prague/\"> excellent recap of WordCamp Prague 2021</a> on the WordCamp Central blog.</li><li>Contributor teams are actively working on building the <a href=\"https://wordpress.org/patterns/\">Block Pattern Directory</a>. You can read about work updates on this project from the <a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\">Meta Team</a> and the <a href=\"https://make.wordpress.org/design/2021/03/30/wordpress-org-patterns-directory/\">Design Team</a>.</li><li>Check out the <a href=\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\">blog post on getting started with the Figma WordPress Design Library</a>. You can use the library to create design prototypes for the WordPress UI in <a href=\"https://www.figma.com/\">Figma</a>.</li><li>The Polyglots Team is making significant progress on the <a href=\"https://make.wordpress.org/polyglots/2021/04/26/polyglots-training-working-group-update-3/\">Polyglots Training course</a>.</li><li>The Training Team has <a href=\"https://make.wordpress.org/training/2021/04/23/discussion-contributor-ladders-for-the-training-team-and-learn-wordpress/\">proposed a contributor ladder</a> as a resource for team contributors to understand ways to participate and find growth opportunities. </li><li>The <a href=\"https://github.com/WordPress/Requests\">Requests library</a> has moved to the WordPress GitHub organization and has a new release: <a href=\"https://github.com/WordPress/Requests/releases/tag/v1.8.0\">version 1.8.0</a>. </li><li>The Docs Team is<a href=\"https://make.wordpress.org/docs/2021/04/05/update-on-the-revision-of-documentation/\"> working on redesigning HelpHub</a> by reviewing its content and design.</li><li>The Themes Team has shared a proposal on <a href=\"https://make.wordpress.org/themes/2021/04/22/removing-blockers-for-block-themes/\">fixing upload issues for block themes</a>.</li><li><a href=\"https://wordpress.org/news/2021/04/people-of-wordpress-tyler-lau/\">Tyler Lau</a> from the U.S. was featured in April’s <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\n\n\n<p><em>The following folks contributed to April’s Month in WordPress: <a href=\"https://profiles.wordpress.org/andreamiddleton/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>andreamiddleton</a> <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a> <a href=\"https://profiles.wordpress.org/chaion07/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaion07</a> <a href=\"https://profiles.wordpress.org/hlashbrooke/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hlashbrooke</a> and <a href=\"https://profiles.wordpress.org/jrf/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jrf</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, 04 May 2021 15:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";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:54:\"WPTavern: A WordPress Voting Guide to the Webby Awards\";s:7:\"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=115895\";s:7:\"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:153:\"https://wptavern.com/a-wordpress-voting-guide-to-the-webby-awards?utm_source=rss&utm_medium=rss&utm_campaign=a-wordpress-voting-guide-to-the-webby-awards\";s: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:7486:\"<p>The People&rsquo;s Voice voting for the <a href=\"https://vote.webbyawards.com/\">25th annual Webby Awards</a> closes in three days on May 6, 2021. Since 1996, the Webbys have recognized excellence on the internet among what is now seven major media types: websites, video, advertising, media and PR, social, apps, mobile, voice, games, and podcasts. After nearly 13,500 entries were submitted from 70 different countries, the&nbsp;<a href=\"https://www.iadas.net/\">International Academy of Digital Arts &amp; Sciences</a> selected fewer than 10% as Nominees and opened voting on April 20. </p>\n\n\n\n<p>WordPress is well-represented among nominees and honorees in the website category. In fact, nearly every single sub-category of five nominees includes at least one WordPress site. If you want to vote for the WordPress sites linked below, <strong>click on the category name to view the five nominees and vote for your favorite one</strong>. Just remember that you can only vote for one site in each category to win the Webby People&rsquo;s Voice.</p>\n\n\n\n<p>In the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/government-civil-innovation\">Government &amp; Civil Innovation</a> category, 4 out of 5 nominees are powered by WordPress. The current front-runner, <a href=\"https://www.whitehouse.gov/\">WhiteHouse.gov</a>, was built by the Wide Eye agency with help from 10up, and a team of many others. The website uses the block editor with a highly customized site editing and management experience.</p>\n\n\n\n<p><em><strong>Update:</strong> WordPress actually sweeps this category with 5/5 nominations, as we just learned the <a href=\"https://xqsuperschool.org/\">XQ Super Schools</a> site is a headless WordPress + Gatsby + WPGraphQL site. The <a href=\"https://politicalplaylist.com/\">Political Playlist</a> site is also a is headless WordPress site using NuxtJS + WPGraphQL.</em></p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>10up has another competing site in that same <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/government-civil-innovation\">Government &amp; Civil Innovation</a> category, <a href=\"https://www.grants.ca.gov/\">The California Grants Portal</a>. The company designed and built a web portal for state agencies to submit their grant data. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>10up also worked on another nominated site, <a href=\"https://theundefeated.com/\">The Undefeated</a>, which was recently migrated to the block editor. The site is contending in the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/cultural-blogwebsite\">Cultural Blog/Website</a> category against two other WordPress-powered sites: <a href=\"https://www.nybooks.com/\">The New York Review of Books</a> and <a href=\"https://www.culturetype.com/\">Culture Type</a>.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Web developer Daniel Schutzsmith shared in Post Status&rsquo; Slack that a site he built custom Gutenberg blocks for is up for a Webby under the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/professional-services-self-promotion\">Professional Services &amp; Self-Promotion</a> category. The site, <a href=\"https://www.audouy.com/\">audouy.com</a>, is a portfolio for production designer Fran&ccedil;ois Audouy. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Real estate has been a hot industry over the past year and 2 out 5 nominees in the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/real-estate\">Real Estate category</a> are running on WordPress: <a href=\"https://www.tripointehomes.com/\">Tri Pointe Homes</a>, a US-based builder site, and Zillow&rsquo;s &ldquo;<a href=\"https://www.zillow.com/z/c/what-moved-us/\">What Moved Us</a>&rdquo; site. Zillow is currently in 2nd place with its WordPress-powered landing page that details visitors&rsquo; search behavior.  It also displays surprising facts from this past year of sales and searches, such as &ldquo;In 2020, 1 in 8 people made an offer sight unseen.&rdquo; The page is beautifully illustrated and looks just as good on mobile as it does on desktop.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/activism\">Activism category</a>, Amnesty International&rsquo;s WordPress-powered <a href=\"https://teargas.amnesty.org/#top\">Tear Gas investigation website</a> is leading the way in 1st place right now. <a href=\"https://visualizenyc.net/\">Visualize NYC 2021</a>, the other WordPress site in this category, is currently in 5th place. Both are powerful examples of primarily black and white design created to evoke a response from the visitor.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/charitable-organizationsnon-profit\">Charitable Organizations/Non-profit category</a>, 3 out of 5 nominees are using WordPress, including <a href=\"https://www.everytown.org/\">Everytown</a>, <a href=\"https://antisemitism.adl.org/\">Antisemitism Uncovered</a>, and the <a href=\"https://photography2020.org/\">Photography 20/20 Compendium</a>. Each design is wildly different from the next and it&rsquo;s tough to tell that these are WordPress sites without viewing the source code. Everytown, a gun violence prevention organization, leads the pack in this category, followed by Antisemitism Uncovered in 2nd place, and the Photography 20/20 Compendium in 5th place.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/law\">Law category</a> is also dominated by WordPress sites with 3 out of 5 nominees using the software to create compelling designs. <a href=\"https://www.sexualharassment-california.com/\">Gilleon Law Firm</a>, which handles sexual harassment cases, is currently in first place by a wide margin, followed by two other WordPress sites, <a href=\"https://ashcroftlawfirm.com/\">Ashcroft</a> and <a href=\"https://www.chamblisslaw.com/\">Chambliss, Bahner &amp; Stophel P.C.</a>, in 2nd and 4th place. If you build websites for attorneys, these sites should provide some solid design inspiration. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>One thrilling byproduct of the Gutenberg project can be seen in these nominations: As more of digital forerunners adopt the block editor and explore its limits, WordPress site designs have become less predictable and more vibrant. </p>\n\n\n\n<p>These nominations are just a handful of the best WordPress sites nominated for a Webby, and the&nbsp;<a href=\"https://www.iadas.net/\">International Academy of Digital Arts &amp; Sciences</a> site is also running on WordPress. If you find more WordPress site nominations or want to share one you worked on, please leave a link in the comments. Webby People&rsquo;s Voice voting closes on May 6, 2021, so there is still time to help your favorite websites take first place. Winners will be announced on May 18, 2021.</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, 03 May 2021 18:22:42 +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:131:\"Gutenberg Times: New Era for WordPress Themes in 2021 – Updates and voices around WordPress 5.8 release  – Weekend Edition #167\";s:7:\"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=17643\";s:7:\"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://gutenbergtimes.com/new-era-for-wordpress-themes-in-2021-updates-and-voices-around-wordpress-5-8-release-weekend-edition-167/\";s: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:25064:\"<p>Howdy, </p>\n\n\n\n<p>Happy May 2021! We are a third into 2021. Phew. </p>\n\n\n\n\n\n<p>I can&#8217;t tell you how relieved I feel that my husband and me as well as many US friends got vaccine shots. It&#8217;s also bitter-sweet and sad. In other places of the world there are again lock-downs.  Hospitals are filling up fast. Hundreds of thousands new infections. People dying. Distribution of vaccines is slow, if there is any available at all. The WordPress community spans all around the globe. We are not out of the woods. We still have friends and business partners in places of crisis. The team of the New York Times curated this list: &#8220;<a href=\"https://www.nytimes.com/article/india-covid-how-to-help.html\">How to Help India Amid the Covid Crisis</a>&#8220;. Consider donating and ask your employer if they have matching programs. <br /><br />How are you and your communities weathering the epidemic 14 months later? Please share in a reply!</p>\n\n\n\n<p>Hang in there, my friends. Stay safe. 😷</p>\n\n\n\n<p>Yours, 💕<br />Birgit</p>\n\n\n\n<h2>WordPress 5.8: Four weeks to Feature Freeze: </h2>\n\n\n\n<p>The Gutenberg and WordPress Core team is gearing up for the <a href=\"https://make.wordpress.org/core/5-8/\">next major release 5.8</a> in July 2021. We are less than four weeks and two more Gutenberg plugin releases away from feature freeze.  </p>\n\n\n\n<h3>Goals of Gutenberg updates for the next major WordPress release</h3>\n\n\n\n<p>In the last two or three weeks, I listened to the interviews and Q &amp; As. I learned the team working on the block-editor pieces for this release has two goals: </p>\n\n\n\n<p>First, to release enough stable tools for developers and designers to start using aspects of Full-site editing in their themes, via theme.json and hybrid constructs for classic themes.  The hope is that by the time the rest of Full-Site-Editing interface is released to the users in December 2020, there are plenty of block-based themes and block patterns available from the community of extenders.</p>\n\n\n\n<p>Second, to introduce the new <em>page template feature</em>. It&#8217;s a new way to use the block editor to create and modify page templates for landing pages. This will be the first time in WordPress that a content creator or site owner would be able to change headers and footer for single pages. This takes a bit of a switch in the publishing / producing mindset. Gutenberg developers are hoping here for plenty of user feedback to make sure that the new blocks and in their new context, the user-facing elements are clear enough to handle in this smaller scope of a single page before the expanded version of Full-site editing is released in December 2021, that allows users to create and modify site-wide templates, template parts and to build new themes. </p>\n\n\n\n<h3>Block-Editor Features to come to  WordPress 5.8</h3>\n\n\n\n<p>After the <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Go/NoGo meeting and decision</a>, technical lead <strong>Hector Prieto </strong>published <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\"><strong>Full Site Editing Go/No Go: Next steps</strong></a> with more details around the full scope of the block editor pieces for WordPress 5.8 </p>\n\n\n\n<ul><li>Gutenberg plugin releases 9.9 &#8211; 10.7</li><li>First version of theme.json for theme builders of block-based themes. </li><li>Theme Blocks (Query, Navigation, Site information)</li><li>Template Editing with the post editor</li><li>Widget Editor and block widgets in Customizer</li><li>Persistent List view in the post editor</li><li>Duotone (Image filter) block supports</li><li>Gallery block refactor</li></ul>\n\n\n\n<p>In the post you&#8217;ll find links to issues and pr for even more details. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Increased Buzz about Full-Site Editing</h2>\n\n\n\n<p>On the WordPress News site, there were a few posts regarding the block-editor and Full-Site Editing. Using the WordPress News space to published more frequently about the ongoing development and ideas is one part of the stronger communication outreach planned for this new feature release. The more intense communication about Full-site editing from the core team is a direct result from the feedback from the WordPress community after the first  Gutenberg release in 2018. </p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\"><strong>Curious about Full-Site Editing</strong></a> by <a href=\"https://twitter.com/JosephaHaden\"><strong>Josepha Haden Chomphosy</strong></a>. A short article on what Full-site Editing is and how it will affect different kinds of users. You have been following Full-site Editing for a while now. So it&#8217;s not necessarily for you. It is a great first article to share with WordPress users and co-workers that hear about Full-site editing for the first time. The resources share are good starting place to catch up. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The second article wasn&#8217;t about Full-site editing, so much but about the Gutenberg. <strong>Anne McCarthy </strong>posted <a href=\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\"><strong>Become an Early Adopter With the Gutenberg Plugin</strong></a>, and tackled the various terms, we have mostly used as synonyms between Gutenberg, block-editor etc. Also, a good place to start, if someone likes to dive deeper into Gutenberg beyond the WordPress Core implementation. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The latest article in the WordPress News section, is the tutorial <a href=\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\"><strong>Getting Started with the Figma WordPress Design Library</strong></a> by <strong>James Koster.</strong> Learn how to quickly create design prototypes for WordPress UI in <a href=\"https://www.figma.com/\">Figma</a>, a collaborative interface design tool. The tutorial is quite comprehensive and not only shows you how you work with it. Being knowledgeable about Figma can also jump start contributing to WordPress as it&#8217;s the tool of choice by the WordPress design team.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>WP Briefing is the new podcast hosted by <strong>Josepha Haden Chomphosy</strong>. In her fifth episode, she was  <strong><a href=\"https://wordpress.org/news/2021/03/talking-full-site-editing-with-matias-ventura/\">Talking Full Site Editing with Matías Ventura</a></strong> (<em>ICYMI</em>). Josepha and <a href=\"https://twitter.com/matias_ventura\">Matías</a> answered user questions, from “is full site editing a standalone plugin?” to “will full site editing break my current site?”. The episode comes with a transcript. </p>\n\n\n\n<h2>Gutenberg Release and Block editor updates</h2>\n\n\n\n<p>In <a href=\"https://make.wordpress.org/core/2021/04/23/core-editor-improvement-refining-the-block-toolbar/\"><strong>Core Editor Improvement: Refining the Block Toolbar</strong></a>, Anne McCarthy elaborates on the refinement and standardization implemented for the Block Toolbar with the goal to simplify the hierarchy of the block, to make it more predictable what goes where.&nbsp;Below graphic is part of the newly updated <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/designers/block-design/#group-block-toolbar-controls-with-related-items\">Best practices for Block Design</a> page of the developer handbook. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>This week Gutenberg 10.5 was released and in short succession v 10.5.1, v 10.5.2 and v 10.5.3. to fixing regression bugs. <a href=\"https://twitter.com/ajitbohra\"><strong>Ajit Bohra </strong></a>wrote about <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\"><strong>What’s New In Gutenberg 10.5</strong></a>. 15 new block patterns made it into the release and template editing is now also available for classic themes. For the latter, exercise optimistic caution should you use the Gutenberg plugin in productions. Many, many more changes came to the block-editor. <em>Grzegorz Ziolkowski and I recorded our take on it for the <a href=\"https://gutenbergtimes.com/podcast\">Gutenberg Changelog</a> podcast yesterday, and it should come to your favorite pod catcher over the weekend. </em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/justintadlock\"><strong>Justin Tadlock</strong> </a>shared his experience in his post <a href=\"https://wptavern.com/gutenberg-10-5-embeds-pdfs-adds-verse-block-color-options-and-introduces-new-patterns\"><strong>Gutenberg 10.5 Embeds PDFs, Adds Verse Block Color Options, and Introduces New Patterns</strong></a></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 2021&#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. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<h2>Block Pattern Directory</h2>\n\n\n\n<p>Speaking of Block Patterns, <strong><a href=\"https://twitter.com/ryelle\">Kelly Choyce-Dwan</a></strong> posted the <strong><a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\">Block Pattern Directory Update</a> </strong>from the Meta team. She invites you to follow along on the site that is a red-hat zone for now, but it already gives you a good idea on how it is going to work. Check it out on<a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\"> wordpress.org/patterns</a>. The patterns are arranged in squares in five categories: <a href=\"https://wordpress.org/patterns/pattern-categories/buttons/\">Buttons</a>, <a href=\"https://wordpress.org/patterns/pattern-categories/columns/\">Columns</a>, <a href=\"https://wordpress.org/patterns/pattern-categories/gallery/\">Gallery</a>, <a href=\"https://wordpress.org/patterns/pattern-categories/header/\">Header</a>, <a href=\"https://wordpress.org/patterns/pattern-categories/text/\">Text</a>. You click on the square to see a details page with a larger representation and a button “Copy Pattern” or add them to your &#8216;Favorites&#8217;. Although, Kelly wrote that the copy button doesn’t work yet, I quickly tested it, and you can just paste it into your next post, even if you are not in code edit mode.&nbsp;</p>\n\n\n\n<p>The meta team is now working on the process for WP.org users to submit patterns into the directory, and the accompanying automated evaluation and moderation feature. WordPress users will be able to find block patterns right from the block editor inserter and add them directly to their post or pages. </p>\n\n\n\n<p>Ultimately, the core block patterns will be removed from Gutenberg and made available through the Pattern directory only.  </p>\n\n\n\n<h2>Testing Full-Site editing: The outreach program</h2>\n\n\n\n<p>The Full-Site Editing Outreach program is in full swing.. Anne McCarthy and dozens of people contribute to WordPress by testing the new feature. </p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/page-template-editor-for-wordpress-5-8-videos-and-plugins-weekend-edition-166/\">Since the last Weekend Edition</a>, there were quite a few updates coming out of the program. </p>\n\n\n\n<p>🗓️ <strong><a href=\"https://make.wordpress.org/test/2021/04/22/upcoming-fse-outreach-program-schedule/\">Upcoming FSE Outreach Program Schedule</a> &#8211; Synch your calendars! </strong>😂</p>\n\n\n\n<p>For anyone who wants to learn more about the program, Anne McCarthy was a guest on the WordPress Jukebox podcast last month. <strong><a href=\"https://twitter.com/wpbuilds\">Nathan Wrigley</a>,</strong> host of the revived WPTavern podcast <strong>Jukebox</strong>, discussed with her <a href=\"https://wptavern.com/podcast/2-anne-mccarthy-on-how-full-site-editing-will-impact-wordpress\"><strong>How Full Site Editing Will Impact WordPress</strong></a> and why the program and its participants are an essential part for a successful implementation of the new features. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In <a href=\"https://make.wordpress.org/test/2021/04/20/fse-program-building-a-restaurant-header-summary/\"><strong>Building a Restaurant Header Summary</strong></a> you can read a curated list of outcomes and finding from the 4th Call for Testing. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In this week&#8217;s <a href=\"https://make.wordpress.org/test/2021/04/29/hallway-hangout-discussion-on-full-site-editing-issues-prs-designs-29-april/\"><strong>Hallway Hangout: Discussion on Full Site Editing Issues/PRs/Designs</strong></a>, participants in the FSE program talked through the findings of the last call for testing with <strong>Anne McCarthy</strong>, <strong>Marcus Kazmierczak</strong> and <strong>Sabrina Zeidan</strong>. Using screen sharing and video the groups was able to discuss some of the interface challenges much easier than when just reading through a blog post. This was already the second of this Video chats. The <a href=\"https://make.wordpress.org/test/2021/04/08/hallway-hangout-discussion-on-full-site-editing-issues-prs-designs-8-april/\">first Hallway Hangout chat took place on April 8th, 2021</a>, when Caroline Nymark, Paal Joachim Ramdahl, and Olga Gleckler joined Anne and Marcus. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>You have until May 5th, 2021 to participate and comment on <strong><a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">Testing Call #5: Query Quest</a>.</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>If you have questions that still need answers, Anne McCarthy<a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\"> </a><strong><a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\">started the second round</a> of collecting questions</strong> to bring back to the team and get you answers. Bookmark this page, so you can open it quickly when you have another question. If you want to read up on the answers for the previously submitted 47 questions, <a href=\"https://make.wordpress.org/test/tag/fse-answers/\">follow this link to previous posts of Q &amp; A </a></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 main (trunk) 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<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Developing for Gutenberg </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/jemjabella\">Jem Turner</a></strong>, a reluctant adopter of Gutenberg, has <a href=\"https://www.jemjabella.co.uk/2021/6-things-i-do-to-make-gutenberg-development-easier/\"><strong>six things she does to make developing websites with Gutenberg easier.</strong></a> It&#8217;s a great mix of developer and content creator processes. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Will Morris</strong> posted <strong><a href=\"https://torquemag.io/2021/04/custom-gutenberg-block/\">How to Create a Custom Gutenberg Block in WordPress (In 3 Steps)</a> </strong>on the Torque Magazine site and helps you how to extend your WordPress site with the <a href=\"https://wordpress.org/plugins/genesis-custom-blocks/\">Genesis Custom Blocks</a>,  one of the few <em>&#8216;almost&#8217;</em> #nocode block building tools.  </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Do The Woo podcast</strong>, co-hosted by <a href=\"https://twitter.com/bobWP\"><strong>Bob Dunn</strong></a> and <a href=\"https://twitter.com/ifyouwillit\"><strong>Mendel Kurland</strong></a>, discussed <a href=\"https://dothewoo.io/wordpress-core-and-blocks-with-grzegorz-ziolkowski/\"><strong>WordPress Core and Gutenberg Blocks with Grzegorz (Greg) Ziolkowski. </strong></a> They talked about the opportunities of working with blocks in an eCommerce context and beyond full-site editing.&nbsp;<a href=\"https://twitter.com/gziolo\">Grzegorz</a> explained how micro templates and blocks are the building material for more complex implementation and the advantages of the standardized interface for users and extenders in WordPress Core.&nbsp;</p>\n\n\n\n<h2>Plugins for the Block Editor</h2>\n\n\n\n<p>Speaking of WooCommerce: <strong>Jamie Marsland</strong> shared his <a href=\"https://www.youtube.com/watch?v=FQbn-TRt2pk\"><strong>Top 10 Blocks for WooCommerce</strong></a> &#8211; Plugins mentioned: </p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">WooCommerce Blocks</a></li><li><a href=\"https://www.pootlepress.com/storefront-blocks/\">Storefront Block</a></li><li><a href=\"https://wordpress.org/plugins/woobuilder/\">WooBuilder</a></li></ul>\n\n\n\n<h2>New Era for WordPress Themes </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/andersnoren\">Anders Noren</a></strong>, Swedish theme developer and co-author of the WordPress Twenty-Twenty theme, sees <a href=\"https://andersnoren.se/a-new-era-for-wordpress-themes/\"><strong>A New Era for WordPress Themes</strong></a>. In 2021,  we will &#8220;see the introduction of the most significant change to WordPress themes since the modern theme system was released in&nbsp;<a href=\"https://wordpress.org/news/2005/02/strayhorn/\">version 1.5</a>&nbsp;of WordPress, 16 years ago.&#8221;. He has great explanation and insights, and embraces the new era and is happy about the slow release this time around, so theme developers can get familiar with the new tools. &#8220;Developers will have plenty of time to create fully block-based themes by the time the Site Editor and Global Styles are released in WordPress 5.9. And no excuses if they don’t.&#8221; Last month, Anders released a new free theme called <a href=\"https://andersnoren.se/teman/eksell-wordpress-theme/\"><strong>Eskell</strong></a>. Read <a href=\"https://wptavern.com/eksell-portfolio-theme-now-available-in-wordpress-themes-directory\">Sarah Gooding&#8217;s review on  WordPress Tavern.</a> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The 47th edition of the <a href=\"https://make.wordpress.org/themes/2021/04/30/gutenberg-themes-week-of-apr-26-2021/\"><strong>Gutenberg + Themes roundup</strong></a> by <strong><a href=\"https://twitter.com/one_maggie\">Maggie Cabrera</a></strong> from the Themes team, lists all FSE related issues and PRs from the Gutenberg repository that need your attention, your opinion and your comments. The post also provides a list of resources if you are just now getting into block-based theme development. One issue caught my eye specifically: <a href=\"https://github.com/WordPress/gutenberg/issues/31124\"><em>Presets used in patterns: register them as user presets?</em></a> in it Andre explores a way how block pattern could be used across a theme change and still keep their styling. Reading through the comments from the Gutenberg contributors, it&#8217;s clear that there are a few questions still unanswered, when users can change colors. This applies to a few other elements of the themes and blocks, when classes don&#8217;t survive a theme change, and designs in navigation or group blocks lose their background colors. There are quite a few of these discussions that need your input and ideas. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his latest post, <a href=\"https://twitter.com/ChrisWiegman\"><strong>Chris Wiegman</strong></a> walks us through the process of reducing WordPress themes to the bar minimum and still be able to render blocks. <strong><a href=\"https://chriswiegman.com/2021/04/creating-a-minimal-wordpress-theme-in-the-era-of-gutenberg/\">Creating A Minimal WordPress Theme In The Era Of Gutenberg</a>.</strong> This <a href=\"https://github.com/chriswiegman/chriswiegman-theme\">minimalistic and sustainable theme is available on GitHub</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>If you are looking to share your future block-based theme in the WordPress.org repository, <strong><a href=\"https://twitter.com/carolinapoena\">Carolina Nymark</a></strong> has a proposal for you: <a href=\"https://make.wordpress.org/themes/2021/04/22/removing-blockers-for-block-themes/\"><strong>Removing blockers for block themes</strong></a> on the Themes team. I am quite surprised that it hasn&#8217;t received any feedback from the community yet. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his post <a href=\"https://wptavern.com/themes-set-up-for-a-paradigm-shift-wordpress-5-8-will-unleash-tools-to-make-it-happen\"><strong>Themes Set Up for a Paradigm Shift, WordPress 5.8 Will Unleash Tools To Make It Happen</strong></a> Justin Tadlock took a tour around the upcoming WordPress 5.8 features and took them for a spin and a first evaluation.  &#8220;Themes are not going the way of the dinosaur. All of that overly complex PHP code work necessary in the past might just be. The shift is putting themes back into their proper place: design. Previously available tools such as patterns and styles coupled with the new pieces like&nbsp;<code>theme.json</code>&nbsp;and template-related blocks will be the backbone of the new system. It is all starting to come together.&#8221; he concluded. </p>\n\n\n\n<p>As a former Theme developer, <strong>Justin Tadlock</strong> keeps his ear to the ground of theme development. I very much appreciate the tremendous effort he puts into his Theme reviews. I learn something new every time.</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/churel-is-a-colorful-and-minimalist-block-ready-wordpress-theme\">Churel Is a Colorful and Minimalist Block-Ready WordPress Theme</a></li><li><a href=\"https://wptavern.com/with-some-hits-and-misses-the-guten-blog-wordpress-theme-has-potential\">With Some Hits and Misses, the Guten Blog WordPress Theme Has Potential</a></li></ul>\n\n\n\n<h2>WordPress Events</h2>\n\n\n\n<p><strong>10 &#8211; 14 May 2021</strong><br /><a href=\"https://pagebuildersummit.com/\"><strong>Page Builder Summit 2021</strong></a><br />Gutenberg is part of it with the following sessions: </p>\n\n\n\n<ul><li>How to turn Gutenberg into a Page Builder with Stackable w/ <strong>Benjamin Intal</strong></li><li>Don’t Compete with Gutenberg &#8211; Embrace It w/ <strong>Danielle Zarcaro</strong></li><li>Google&#8217;s Core Web Vitals &#8211; Get Green With Gutenberg w/ <strong>Jake Pfohl</strong></li><li>Creating newsletters in the Gutenberg block editor w/ <strong>Lesley Sim</strong></li><li>Building Fast, Block Based Landing Pages with <strong>Mike Oliver</strong></li></ul>\n\n\n\n<p><strong>May 24-28, 2021</strong><br /><a href=\"https://wordsesh.com/\"><strong>WordSesh 2021</strong></a></p>\n\n\n\n<p><strong>June 7 &#8211; 9th, 2021</strong><br /><strong><a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe</a></strong><br />A virtual event and contributor day. <a href=\"https://europe.wordcamp.org/2021/call-for-sponsors/\">Call for Sponsors is open.</a></p>\n\n\n\n<p><strong>June 20 &#8211; 26</strong><br /><strong><a href=\"https://japan.wordcamp.org/2021/\">WordCamp Japan</a></strong><br /><em>The schedule has been posted. Most sessions will be in Japanese, with exceptions, I think&#8230; </em></p>\n\n\n\n\n<hr class=\"wp-block-separator 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 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 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, 01 May 2021 22:15:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:76:\"WPTavern: Alpha Particle and Flowspoke Acquire Kanban for WordPress for $15K\";s:7:\"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=115839\";s:7:\"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:195:\"https://wptavern.com/alpha-particle-and-flowspoke-acquire-kanban-for-wordpress-for-15k?utm_source=rss&utm_medium=rss&utm_campaign=alpha-particle-and-flowspoke-acquire-kanban-for-wordpress-for-15k\";s: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:5586:\"<p>Digital consultancies <a href=\"https://alphaparticle.com/\">Alpha Particle</a> and <a href=\"https://flowspoke.com/\">Flowspoke</a> have <a href=\"https://kanbanwp.com/article/under-new-management/\">acquired</a> the <a href=\"https://wordpress.org/plugins/kanban/\">Kanban for WordPress</a> plugin, a tool that puts Kanban boards into the admin to measure progress on a goal. The plugin is used for agile project management, sales tracking, editorial scheduling, and other planning purposes.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordPress developer <a href=\"https://gelform.com/\">Corey Maass</a> created Kanban for WordPress in 2015 but struggled to market it enough to grow beyond 2,000 users. In 2020, he saw Alpha Particle CTO Keanan Koppenhaver post on Twitter that he was looking to acquire a plugin business and jumped at the chance to sell Kanban for WordPress. Koppenhaver wanted a plugin that already had $1k-$12K annual revenue and wasn&rsquo;t tied in with Beaver Builder, Elementor, Divi, or any other page builders. Integration with WooCommerce or other third-party software was a plus.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">&ndash; A business selling a WordPress plugin or a collection of plugins<br /><br />&ndash; Between $1k and $12k annual revenue, ideally recurring<br /><br />&ndash; Ideally runs as its own entity, or has its own account with any payment processors<br /><br />(2/4)</p>&mdash; Keanan Koppenhaver (@KKoppenhaver) <a href=\"https://twitter.com/KKoppenhaver/status/1318224539663421444?ref_src=twsrc%5Etfw\">October 19, 2020</a></blockquote>\n</div>\n\n\n\n<p>&ldquo;I&rsquo;d burned out on the project so I&rsquo;d thought about selling for a while but didn&rsquo;t do anything about it,&rdquo; Maass said. &ldquo;When Keanan posted he was looking, I inquired because I&rsquo;d met him and knew he was solid. After a chat I knew he was the right buyer because his approach to WordPress was similar to mine &ndash; not too detached, not too dogmatic.&rdquo;</p>\n\n\n\n<p>Maass had monetized Kanban for WordPress for the past five years through a $149/year pro version (the most popular price point) and a $499.00 lifetime support license. He said revenue had peaked around $20K/ARR but had dropped to about $10K/ARR due to his minimal involvement. During his peak revenue months there were some weeks he would work 40 hours and some that he would work no hours at all.</p>\n\n\n\n<p>&ldquo;I applied the &rsquo;12-18 months of revenue as a selling price&rsquo; rule, and sold it for $15k,&rdquo; Maass said.</p>\n\n\n\n<p>He also commented on the difficulty of finding a non-technical partner in the WordPress world. Maass searched for someone to market the plugin while he concentrated on the product but never found a match:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I interviewed non-WordPress people. No luck. I&rsquo;ve found a few people in the WordPress eco-system, but most already have one more products they&rsquo;re growing. It&rsquo;s one of the quirks of the WordPress world &ndash; there are more devs than non-devs. Most everywhere else in the tech-business world, it&rsquo;s the other way around. And of course most of the success stories of WordPress are tech founders that pivoted to marketing/biz dev, which a lot of devs can&rsquo;t do, myself included.</p></blockquote>\n\n\n\n<p>The teams at Alpha Particle and Flowspoke saw potential to grow the Kanban for WordPress plugin business with their combined design, marketing, and development skills. </p>\n\n\n\n<p>&ldquo;As WordPress continues to become an even more full-featured platform, we think there&rsquo;s a demand for great applications to be built <em>inside</em> WordPress,&rdquo; Alpha Particle CTO Keanan Koppenhaver said. &ldquo;And Kanban is a perfect example of that. It&rsquo;s already proven useful for a lot of people and we want to take even more of the features from other project management tools and integrate them tightly with tools WordPress folks are already using, like the Block Editor and WooCommerce, to help add to that unified WordPress experience.&rdquo;</p>\n\n\n\n<p>Although Alpha Particle and Flowspoke already have in-house products they are working on, they wanted to acquire a business where they could immediately start experimenting.</p>\n\n\n\n<p>&ldquo;With a plugin that already has some traction, it just makes it a lot easier to try new things and get quicker feedback on new features and new ideas,&rdquo;  Koppenhaver said. &ldquo;Since there&rsquo;s already an engaged user base, we saw the opportunity to take the things we tell our clients to do with their projects and apply them to a product of our own. I think that long-term this wouldn&rsquo;t be the only one we acquire, but we&rsquo;ll be on the look out for the next right opportunity. We&rsquo;re excited about the long-term roadmap we&rsquo;ve laid out for Kanban, too, and ready to put in the time to focus and make that vision a reality.&rdquo;</p>\n\n\n\n<p>Alpha Particle and Flowspoke plan to release the long-awaited version 3 of Kanban for WordPress in the near future. It has been completely redesigned and rewritten from the ground up. They will also be building in tighter integration with WordPress where users will be able to link posts to cards and automatically have cards moved to the &ldquo;Published&rdquo; column after publishing. Kanban for WordPress already has integrations for Gravity Forms and Ninja Forms but the team has more third-party integrations on the roadmap and is also taking suggestions.</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, 30 Apr 2021 17:14: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: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: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:34:\"BuddyPress: BuddyPress 8.0.0-beta1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=318272\";s:7:\"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:54:\"https://buddypress.org/2021/04/buddypress-8-0-0-beta1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4338:\"<p><strong>BuddyPress 8.0.0-beta1</strong>&nbsp;is now available for testing! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f941.png\" alt=\"🥁\" class=\"wp-smiley\" /></p>\n\n\n\n<p>Please note the plugin is&nbsp;<strong>still in development</strong>, so we recommend running this beta release on a&nbsp;<strong>testing site</strong>.</p>\n\n\n\n<p>You can test BuddyPress 8.0.0-beta1 in 4 ways :</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a> plugin.</li><li><a href=\"https://downloads.wordpress.org/plugin/buddypress.8.0.0-beta1.zip\">Download the beta here (zip file)</a>.</li><li>Check out our SVN repository: <code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li><li>Clone our read-only Git repository: <code>git clone git://buddypress.git.wordpress.org/</code></li></ul>\n\n\n\n<p><strong>The current target for final release is June 2, 2021. That’s just five weeks away, so your help is vital to making sure that the final release is as good as it can be.</strong></p>\n\n\n\n<p>Please note BuddyPress 8.0.0&nbsp;<strong>will require at least WordPress 4.9</strong>.</p>\n\n\n\n<p>We repeat it each time we announce a beta release : <strong>testing for bugs is VERRRY important</strong>. Please make sure to test this pre-release using a testing configuration which is very close to the one you are using in production. If you find something unusual (aside from the great new features below), please report it on <a href=\"https://buddypress.trac.wordpress.org/newticket\">BuddyPress Trac</a> or post a reply to <a href=\"https://buddypress.org/support/topic/buddypress-8-0-0-beta1/\">this support topic</a>.</p>\n\n\n\n<p>Here are the three hottest 8.0.0 features to pay close attention to while testing (Check out&nbsp;<a href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=8.0.0\">this report</a>&nbsp;on Trac for the full list).</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f46b.png\" alt=\"👫\" class=\"wp-smiley\" /> BP Members Invitations</h2>\n\n\n\n<p>Whether you allow open registration or not you can use this <a href=\"https://buddypress.trac.wordpress.org/ticket/8139\">opt-in feature</a> to let your community grow itself. Once enabled from the BuddyPress Options Administration screen, your members will be able to invite their network of friends, co-workers, students, developers, well possibly anyone, to join your site <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f4c8.png\" alt=\"📈\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" /> Selectable xProfile sign-up fields</h2>\n\n\n\n<p>Until now, only the Primary group of xProfile fields was displayed on the registration form of your community. 8.0.0 gives you the <a href=\"https://buddypress.trac.wordpress.org/ticket/6347\">freedom to choose</a> any field from any field group to add to your site&#8217;s registration form <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f4ab.png\" alt=\"💫\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2><span class=\"dashicons dashicons-wordpress-alt\"></span> Include WordPress user fields in your BuddyPress member profiles</h2>\n\n\n\n<p>8.0.0 introduces <a href=\"https://bpdevel.wordpress.com/2021/03/24/wordpress-xprofile-field-types/\">2 new xProfile Field types</a>. The WP Textbox can be used to include the user&#8217;s first name, last name, Website link or any potential WP contact methods. With the WP Biography field you can display the Biographical Info in the group of xProfile fields of your choice <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64c.png\" alt=\"🙌\" class=\"wp-smiley\" /> .</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>And so much more such as the new <a href=\"https://buddypress.trac.wordpress.org/ticket/8428\">Welcome BP Email</a>, the <a href=\"https://buddypress.trac.wordpress.org/ticket/4747\">terms of use acceptance profile field</a>, improvements to the BP Nouveau template pack &amp; to the BP REST API… </p>\n\n\n\n<p>We&#8217;ll tell you more about all these soon into our <a href=\"https://bpdevel.wordpress.com/category/development-notes/8-0/\">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:\"Thu, 29 Apr 2021 23:30:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: Gutenberg 10.5 Embeds PDFs, Adds Verse Block Color Options, and Introduces New 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=115767\";s:7:\"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:235:\"https://wptavern.com/gutenberg-10-5-embeds-pdfs-adds-verse-block-color-options-and-introduces-new-patterns?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-5-embeds-pdfs-adds-verse-block-color-options-and-introduces-new-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:6495:\"<p class=\"has-drop-cap\">I reach over to grab my phone to check the time. I am debating whether I should stay awake and watch one more episode of <em>The Walking Dead</em> &mdash; it would be my fourth, maybe fifth, binge of the series.</p>\n\n\n\n<p>11:12 pm.</p>\n\n\n\n<p>I noticed that Slack was blowing up my phone. I had it on silent, so I had to catch up. One message stood out above all the rest:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>No matching template found.</p></blockquote>\n\n\n\n<p>That was the front page of the Tavern last night as it updated to Gutenberg 10.5. I knew it was related to the Full Site Editing (FSE) changes in the latest release. I had seen that error enough in local testing and needed no more information to know what to do &mdash; deactivate the plugin. Then, I could get back to my internal debate of staying up for an hour past my bedtime for TV.</p>\n\n\n\n<p>Sometimes, such is life on the bleeding edge, or at least life when running the fortnightly releases of the Gutenberg plugin with automatic updates enabled. It presents a challenge or two or a hundred. I had let my guard down after a smooth 10.4 release, and I knew better. After several prior releases of fixing issues on the backend, the development team gave me a break. It was almost as if they were saving up for something big.</p>\n\n\n\n<p>Gutenberg now explicitly declares that anyone running the plugin is on a block-based theme, despite whether their theme actually supports block templates. It should generally fall back gracefully if there none. This seems to be centered on a change that allows <a href=\"https://github.com/WordPress/gutenberg/pull/30438\">classic users to create custom block templates</a>. However, with the plugin activating a &ldquo;theme-supported&rdquo; feature automatically, it triggers a chain of events that overrides the template system. Any theme with a custom template hierarchy could break. I created a <a href=\"https://gist.github.com/justintadlock/74fa7c61c692423cc1fcefd9a0ab8e5f\">code snippet on Gist</a> if anyone else runs into the issue and needs to deactivate &ldquo;block templates&rdquo; support.</p>\n\n\n\n<p>I like that we run the plugin. Daily usage means that we can effectively write about it &mdash; a practice-what-you-preach sort of thing.</p>\n\n\n\n<p>Sometimes, Gutenberg, you break my heart. You will find few enthusiastic cheerleaders more loyal than me. I believe in the project, but some days, you try your best to make it rough.</p>\n\n\n\n<p>But, all is well. There are some exciting things about this release.</p>\n\n\n\n<p>Template-editing mode is now enabled for classic themes. Despite this breaking the Tavern theme, it is a feature that I look forward to as a necessary transitional feature toward FSE. Another quick highlight is the work the team has done in making the <a href=\"https://github.com/WordPress/gutenberg/pull/30248\">Columns block more accessible</a>. Each column now has a numbered label that is read aloud via screen-readers.</p>\n\n\n\n<h2>Embedded PDFs</h2>\n\n\n\n<img />Inline-embedded PDF.\n\n\n\n<p class=\"has-drop-cap\">A decade ago, I had one theme user in particular who needed to embed PDFs. As a young developer, it was just the sort of challenge I needed to build for an audience of one out of 100,000+. So, within the day, I wrapped up a solution similar to what the Gutenberg team did in version 10.5. It is nice to see WordPress finally catching up.</p>\n\n\n\n<p>Only the block system makes such embedding much nicer. Drag a <a href=\"https://github.com/WordPress/gutenberg/pull/30857\">PDF into the content canvas</a> and let it work its magic.</p>\n\n\n\n<p>There is one caveat: many mobile phones and tablets will not show an embedded PDF. The File block does make a note of this. It also allows users to disable the inline embed and control the height.</p>\n\n\n\n<p>This feature offers the best of both worlds. Visitors can read the PDF directly on the page, and they can also click the download button to snag a copy of the file.</p>\n\n\n\n<h2>Color Options for the Verse Block</h2>\n\n\n\n<img />Verse block with custom colors.\n\n\n\n<pre class=\"wp-block-verse\">Poets can rejoice at last\nThe time of the Verse being a second-class block lies in the past\nUsers can add subtle colors or those that clash\nA tweak here or there can give their words the flash\nthey need\nto breathe\nto exceed, all expectations\nText, background, and links are fair game\nUnreadable if they were all the same\nA splash of color is what it takes to tame\nthe words&hellip;</pre>\n\n\n\n<p>I will stop there and let the pros handle actual poetry.</p>\n\n\n\n<p>Gutenberg 10.2 added the standard block color <a href=\"https://github.com/WordPress/gutenberg/pull/27736\">options to the Verse block</a>. Perhaps all blocks will get the same treatment down the road. I am still waiting on colors for the Quote block too.</p>\n\n\n\n<h2>New Block Patterns</h2>\n\n\n\n<p class=\"has-drop-cap\">The latest plugin update removes all 10 of the default WordPress block patterns and replaces them with <a href=\"https://github.com/WordPress/gutenberg/pull/29973\">15 fresh designs</a>. The new set is an attempt to better showcase the editor&rsquo;s capabilities.</p>\n\n\n\n<img />Testing new block patterns.\n\n\n\n<p>For end-users who might be worried about losing their old patterns, this will not affect your content. Because patterns are merely predefined sets of blocks, it is the blocks rather than the patterns that actually get inserted into the content canvas and saved.</p>\n\n\n\n<p>The removal of old patterns with replacements of new ones was always a part of the plan. Web design changes over time, and the patterns system allows core developers to keep pace. Perhaps the old patterns will live in the <a href=\"https://wptavern.com/pattern-directory-targeted-to-launch-with-wordpress-5-8\">upcoming block directory</a> for those users who still want them.</p>\n\n\n\n<p>Gutenberg 10.5 also introduces a few <a href=\"https://github.com/WordPress/gutenberg/pull/30763\">opinionated Query block patterns</a>: Post Grid, Large Title, and Offset Posts. The ultimate goal is to provide an array of options for users as a starting point.</p>\n\n\n\n<img />&ldquo;Large title&rdquo; Query block pattern.\n\n\n\n<p>There is still an open call for the designers to pitch in, <a href=\"https://wptavern.com/calling-all-themers-design-the-next-round-of-query-block-patterns\">contributing custom Query patterns</a> to the project. It is an opportunity to give back that requires almost no JavaScript or PHP programming knowledge.</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, 29 Apr 2021 16:41: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:14:\"Justin Tadlock\";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:80:\"WordCamp Central: Making a great online conference experience at WordCamp Prague\";s:7:\"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=3138356\";s:7:\"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:108:\"https://central.wordcamp.org/news/2021/04/29/making-a-great-online-conference-experience-at-wordcamp-prague/\";s: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:14783:\"<p>My name is <a href=\"https://profiles.wordpress.org/zaantar/\" target=\"_blank\" rel=\"noreferrer noopener\">Jan</a>, I am a <a href=\"https://toolset.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Toolset</a> developer at <a href=\"https://onthegosystems.com/\">OnTheGoSystems</a>. For the past several years, I have been actively involved in the Czech WordPress community. On Saturday 27th of February 2021, we held an online conference <a href=\"https://prague.wordcamp.org/2021/english\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Prague 2021</a>.</p>\n<p>Switching an interactive, in-person event to the online format while keeping most of its magic has been difficult but certainly not impossible.</p>\n<p>As this year’s lead organizer, I want to share pieces of this sometimes arduous but extremely rewarding journey, together with some crucial ingredients that made it a success beyond our wildest expectations.</p>\n<p><a href=\"https://central.wordcamp.org/files/2021/04/wordcamp_prague_logo-2021-1.png\"><img /></a></p>\n<p>Let’s just face the truth: If I knew what I was actually getting into, I wouldn’t have said yes. But I am deeply grateful that I didn’t know. Even after being on the team two years prior to this one, the experience of being a lead organizer is pretty much non-transferable.</p>\n<p>Even so, I — a backend software developer with questionable social and team management skills — was very reluctant about taking such a huge responsibility.</p>\n<p>One of the things that convinced me — besides the fact that, apart from the then lead organizer, nobody else from our team was willing to take the role — was that this time, we were going to do an online conference.</p>\n<p>This unique situation meant two things that removed most of my anxiety. First, nobody knew what to expect from an <em>online</em> WordCamp Prague: It was a completely new thing, an experiment, even. Let’s do our best and see what happens.</p>\n<p>Second, the budget was no longer nightmare-inducing, compared to previous years (especially the fact that we were never sustainable without sponsors, and every time, we worried if we would manage to secure enough funding).</p>\n<p>With the pandemic foreseeably about to wreak havoc on our small country, with all the uncertainty, and with me in strict isolation until a vaccine is available, a fully online event was the only realistic way we could actually make it happen.</p>\n<p>And so we did.</p>\n<p>Specifically, by “we”, I mean the fourteen of us: My fellow WordCamp organizers, most of whom have been on the team for years (many of them previous lead organizers), some new faces, and a small recording studio owner who demonstrated superhuman patience during the whole process. Even with this amount of people, it took considerable effort, and without the dedication, good teamwork, and communication, this wouldn’t have worked at all.</p>\n<p><a href=\"https://central.wordcamp.org/files/2021/04/Vyber_200-1-1.png\"><img /></a></p>\n<p><em>Part of the WordCamp Prague 2021 organizer team at the closing speech</em></p>\n<h1>The Recipe</h1>\n<p>My goal since the very beginning was to make it very interactive and to emulate the experience of a physical conference — where, as everyone who ever attended one will testify, the true magic of WordCamps happens — as closely as possible.</p>\n<p>A great source of inspiration was WordCamp Europe 2020, which had to be hastily switched to an online version just a couple of months before (and I deeply empathize with its organizers, it must have been an extremely hard blow for them, much harder than for us who have “just” booked a hotel in Porto or already bought non-refundable airline tickets). I got some ideas from there that we copied and also some things I knew I wanted to avoid.</p>\n<p>So, here’s our “online WordCamp recipe”, if you will:</p>\n<h2>A local target audience</h2>\n<p>From the get-go, we decided to explicitly focus on the Czech and Slovak audience, and we didn’t accept any English talks whatsoever (some of the speakers who applied will be talking at our<a href=\"https://www.meetup.com/naswp-cz/\"> monthly meetups</a>, though).</p>\n<p>The reasoning behind this was what I call <em>online conference fatigue</em>. Attending an English-speaking WordPress event is very easy these days, with WordCamps or meetups happening every couple of days or weeks. There’s nothing wrong with that, of course.</p>\n<p>But, considering that many of our fellow citizens aren’t fluent English speakers — the language barrier is still rather high, unfortunately — and that we were told there are no other WordCamps planned in the Czech Republic or Slovakia for the upcoming year, we found ourselves in a unique position to kind of fill this niche (side note: Czechs and Slovaks understand each other very well) and to <em>effectively</em> add some value to the WordPress ecosystem in our region.</p>\n<p>In the end, I believe this was one of the main reasons for such a high attendance (over 650 registered attendees, 595 of which showed up).</p>\n<h2>A proper online conference platform</h2>\n<p>WCEU — and other WordCamps as well — went with a combination of YouTube Live or Crowdcast for presentation tracks and Zoom for networking or virtual sponsor booths. While that is affordable, relatively easy, and accessible (and once again: I cannot blame WCEU for this choice due to the time pressure), I was not entirely satisfied. The result felt a bit confusing, constantly switching between browser tabs or different applications.</p>\n<p>We put a lot of effort into finding a good platform, and we eventually settled on <a href=\"https://hopin.com/\">Hopin</a>. It wasn’t without its quirks and little obstacles, it <em>definitely</em> wasn’t for free. But it worked great for the attendees. It allowed us to have a main “stage”, networking rooms, sponsor booths, even the schedule all in one place. It was immersive.</p>\n<p><a href=\"https://central.wordcamp.org/files/2021/04/Vyber_202.png\"><img /></a></p>\n<p><em>Front page of the event on Hopin</em></p>\n<h2>One track only</h2>\n<p>I have to admit that the two-track experience of WCEU (which also meant two networking rooms on Zoom) was pretty overwhelming. I can be an information sponge and I had a hard time deciding what I want to see or where I want to be the most.</p>\n<p>Also, we didn’t have enough resources to effectively run multiple tracks for WordCamp Prague. To cover one track for a whole day, you need at least two hosts and then two other teammates who will stay in the networking room (we called ours “foyer”). We were very lucky to find our two hosts and we decided to go for quality instead of quantity.</p>\n<p>From the feedback we received, this was a good choice. Even with keeping presentations to only one track, many people still struggled with wanting to be both in the main track and in the foyer at the same time.</p>\n<h2>Pre-recorded talks, live Q&amp;A</h2>\n<p>One of those things that I truly liked about WCEU — and that we’ve easily agreed upon — was that our speakers’ talks would be pre-recorded and then they would join together with a host for a live Q&amp;A session.</p>\n<p>With fourteen speakers, the risk that <em>something somewhere</em> would go wrong was considerable. This way, the worst that could happen would be losing the Q&amp;A.</p>\n<p>The approach had some unexpected secondary benefits too: Our hosts could see the talk in advance and prepare for the Q&amp;A much better. We knew when it would end, so we could plan our timetable accordingly. The speakers knew they really had to submit their completed talk a couple of days before the event. And so on.</p>\n<h2>Networking with the speaker afterward</h2>\n<p>If I had to pick one key aspect that made the most difference, this would be it. Also inspired by WCEU, after every talk (ca. 20min + 5min for Q&amp;A), the speaker was invited to join the foyer (networking room) where the attendees could catch up with them either by asking further questions in the chat or by connecting with their audio and video and talking to them directly.</p>\n<p>This ended up being very popular, there were always a couple of dozen people in the foyer. Sometimes, the conversation had to continue in a newly created room after the following speaker had finished their talk and joined in as well.</p>\n<p>We had two of our team members always present, ready with some of their own questions for the speaker, to help start the conversation if needed.</p>\n<h2>Virtual sponsor booths with schedule</h2>\n<p>The highest two tiers of our sponsor program included a virtual sponsor booth. We suggested the sponsors pick one hour on the schedule and hold their presentation then, instead of having to attend for the whole day.</p>\n<p>It was also practical for the attendees, I believe, to know what’s the best time to visit and ask questions.</p>\n<p>When not active, the virtual booth was in a “presentation” mode with a sponsor’s slideshow on repeat.</p>\n<h2>Happiness bar and afterparty</h2>\n<p>No WordCamp is a proper WordCamp without these two things.</p>\n<p>We implemented the happiness bar as another virtual room (same as the foyer) and two to three volunteers were always present to answer any attendees’ questions about their WordPress sites.</p>\n<p>As for the afterparty, we created four different “tables” – virtual rooms. One of them also for English speakers, since some of our sponsors’ representatives wanted to attend as well.</p>\n<p>To my surprise, two of those tables stayed active for a pretty long time, and when we concluded the afterparty around 10 PM, there were still about twenty, thirty people around. Perhaps we’ve become more used to online socializing because of the pandemic endless lockdowns, but some of the feedback we received went along the lines of “it felt almost like a physical WordCamp.”</p>\n<h2>Interviews with speakers</h2>\n<p>In years past, before the conference itself, we usually did write interviews with speakers and then shared the articles on our social media to bring attention to the event. It was usually quite difficult to produce these interview articles: The speakers rarely found enough time for this and we often got late submissions or content that was not wordy enough. Then, the text had to be polished and reviewed before publishing.</p>\n<p>This year, instead, someone had the brilliant idea to just do live interviews via Zoom. The advantages were numerous: It was fast to make, we immediately had the final product (videorecording) with minimal post-processing, and it was also fast to view and more attractive on social media than a long text.</p>\n<h2>A strong, positive organizer team</h2>\n<p>I can’t stress enough how well my team managed to self-organize and how dedicated the vast majority of us were to deliver a great result. Even under time pressure, we’ve always done our best to keep the spirit up.</p>\n<p>After all, we should all remember, it’s a WordCamp, a volunteer-organized event that should be interesting and fun, not a question of life and death. Everything doesn’t always have to be perfect. It’s important to keep that in mind.</p>\n<p><a href=\"https://central.wordcamp.org/files/2021/04/image.png\"><img /></a></p>\n<p><em>WordCamp Prague 2021 organizers</em></p>\n<h1>Looking back</h1>\n<p>In retrospect, the whole experience was intense, difficult at times, but ultimately rewarding beyond expectation.</p>\n<p>I find myself struggling to compare it with previous years. The physical event is really something else, and my perspective was dramatically shifted in my new role.</p>\n<p>But I will say this: We keep building on the work of previous years. Be it our visual presence, the experience of individual team members with their agenda, or the way we organize and carefully handpick and balance the content of the whole event. It seems that we manage to move the event forward every year, and that’s ultimately what matters.</p>\n<p>The most challenging part was time management — no surprise there. Because of the pandemic, everyone was kind of busy with their lives and we started seriously organizing only towards the end of September. In combination with the already somewhat problematic timing, we set ourselves up for quite a wild ride.</p>\n<p>If you want to do the event before the main conference season, that also means that you have less than two months from confirming speakers to make everything happen. Practically nothing gets done during December, and the speakers will not plan that far ahead as to apply in November already.</p>\n<p>This timing is kind of set in stone for us and we will have to handle everything that we can beforehand so that the run to the finish line is without unnecessary obstacles.</p>\n<p>Also, with my limited experience, I would say that organizing a team of — albeit very motivated — volunteers who have different daily jobs is quite different from any sort of project management at work. The primary occupation or other things often have taken precedence over WordCamp and can easily mess up the team’s schedule in a bad way. That’s why we always have to strive for asynchronous communication.</p>\n<h1>Looking forward</h1>\n<p>And what’s next? I might apply to lead the next year as well, especially if my teammates decide to continue as well. The idea of starting with a physical event organization around May feels downright ridiculous at this point because of the situation in our country. And since I already have experience with leading an online event, I might as well exploit it.</p>\n<p>For the next year, I want to again iterate on our know-how, keep what has worked, and replace the things that didn’t — simply, to move the whole project a couple of steps forward.</p>\n<p>Most importantly, my great desire is to make the preparations run smoothly, do things in advance, reduce the amount of stress for the whole team.</p>\n<p>Apart from that, we’ll be also focusing on monthly <a href=\"https://www.meetup.com/naswp-cz/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Pivo meetups</a> and other activities of the community, but that is a topic for another time.</p>\n<p><em>If you have any comments or questions, I invite you to <a href=\"mailto:jan.stetina@naswp.cz\">reach out to me</a>.</em></p>\n<p><img class=\"aligncenter\" src=\"https://onthegosystems.com/wp-content/uploads/2021/03/cropped-wapuuking-1024x724-2.png\" alt=\"\" /></p>\n<p><em>WordCamp Prague mascot, The Wapuu King</em></p>\n<p><em>This post was originally <a href=\"https://onthegosystems.com/2021/03/making-a-great-online-conference-experience-at-wordcamp-prague/\">published</a> on <a href=\"https://onthegosystems.com\">onthegosystems.com</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, 29 Apr 2021 08:53: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:7:\"zaantar\";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:65:\"WPTavern: Pattern Directory Targeted to Launch with WordPress 5.8\";s:7:\"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=115742\";s:7:\"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:175:\"https://wptavern.com/pattern-directory-targeted-to-launch-with-wordpress-5-8?utm_source=rss&utm_medium=rss&utm_campaign=pattern-directory-targeted-to-launch-with-wordpress-5-8\";s: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:2218:\"<p>Last month WordPress contributors published the <a href=\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory\">initial designs</a> for the upcoming pattern directory, which will host community-submitted patterns that can be installed with one click from the block inserter in the editor. A live prototype of the work in progress is available at <a href=\"https://wordpress.org/patterns/\">wordpress.org/patterns</a>. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The previously planned masonry style, which accommodates variable thumbnail heights, has not been implemented yet. Clicking on the individual pattern reveals a live preview with a handy resizing bar for trying it out on different screen sizes. The copying and favoriting features are not yet fully working. I was able to copy and paste patterns into the editor, but the previews aren&rsquo;t yet very accurate.</p>\n\n\n\n<p>The project is clipping along and contributors are aiming to have the new directory ready to <a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\">launch in tandem with the upcoming WordPress 5.8</a> release. Features planned for the first version include browsing and searching patterns, live preview of patterns, and the ability to copy the block code. Users signed into WordPress.org will be able to create and submit patterns to the directory using a set of curated images and media. They will go through a basic moderation process and patterns will be available for download directly through the block editor.</p>\n\n\n\n<p>Once the directory is launched, contributors plan to add support for internationalization, forking and iterating on patterns, expand the available media for use in pattern creation, and add a pattern browsing UI to the editor. </p>\n\n\n\n<p>WordPress 5.8 is expected to land in July 2021 with the new Query, Site Logo, and Navigation blocks, template-editing mode, and the block-based widgets screen and customizer integration. The availability of pre-made patterns will be a beneficial accompaniment to the first round of full-site editing features added to core in the next release, enhancing the basic page building experience.</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, 29 Apr 2021 04:25: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: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:85:\"WPTavern: Gravity Forms 2.5 Launches With an Overhauled UI and Focus on 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:30:\"https://wptavern.com/?p=115645\";s:7:\"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:215:\"https://wptavern.com/gravity-forms-2-5-launches-with-an-overhauled-ui-and-focus-on-accessibility?utm_source=rss&utm_medium=rss&utm_campaign=gravity-forms-2-5-launches-with-an-overhauled-ui-and-focus-on-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7327:\"<p class=\"has-drop-cap\">The Gravity Forms team formally <a href=\"https://www.gravityforms.com/gravity-forms-2-5-is-now-available-the-next-generation-of-form-building/\">announced version 2.5 of its form plugin</a> yesterday. The product, owned by Rocketgenius, promises an overhauled experience that is more in line with the core block editor. The team also wanted to put accessibility at the forefront of this release.</p>\n\n\n\n<p>The design is fresh, ditching pieces of the older WordPress UI in favor of cleaner lines and branding. The update should make current users feel like they are getting an overhauled product that still offers all the tools they are accustomed to. It should also feel more attractive to new customers.</p>\n\n\n\n<p>&ldquo;Our big push with 2.5 is to update our editor so it looks more like Gutenberg, added more enhancements to using it in the block editor as well as doing our level best to make Gravity Forms the easiest form plugin in the ecosystem to make accessible,&rdquo; said James Giroux, Community Experience Manager at Rocketgenius.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Version 2.5 Form Editor</li><li class=\"blocks-gallery-item\"><img />Version 2.4 Form Editor</li></ul>Comparison between new and old Gravity Forms editor screens.\n\n\n\n<p>While much of the new UI looks and feels like the block editor, there are differences in the user experience. Instead of a block inserter, form fields can be clicked or dragged and dropped from the right sidebar. Users more accustomed to slash commands will not be able to work directly from the content canvas. Even with the differences, building forms felt natural.</p>\n\n\n\n<p>&ldquo;The native WP editor experience is changing a lot, and things are continuing to evolve there,&rdquo; said Giroux. &ldquo;One of the things we&rsquo;ve worked really hard on with this latest release is to be as consistent as we can with our UI without being completely identical to the editor. This gives us the freedom to adapt to our users&rsquo; needs without being constrained by the timelines and development priorities of the WP editor. Our previous form editor was designed to fit in with the look and feel of the editor of the day, and I expect we&rsquo;ll continue to be influenced and shaped by what the community designs and creates for Core.&rdquo;</p>\n\n\n\n<p>Gravity Forms always carved its own path, leaping when others were still learning to crawl. Building entirely with native WordPress methods could hinder their goals, and the block system is still rapidly changing.</p>\n\n\n\n<p>&ldquo;We&rsquo;re very excited about the new UI patterns that the block editor has introduced,&rdquo; said Giroux. &ldquo;It gives us a blueprint to create with consistency that we believe will lead to better user outcomes. The legacy WordPress Dashboard was not opinionated by design. The Block Editor and now Full Site Editing workflows, however, are giving us a lot more that we can apply. This will make Gravity Forms more familiar to WordPress users, and that&rsquo;s probably the biggest way the new editing experience has shaped our approach.&rdquo;</p>\n\n\n\n<img />Forms management screen.\n\n\n\n<p>&ldquo;The Block Editor is a great tool for users,&rdquo; said Giroux. &ldquo;If we can find ways to give more functionality on a per post or per-page basis that will maintain the stability and performance that our users have come to expect, I don&rsquo;t see why we wouldn&rsquo;t move in that direction. For now, there is a lot of opportunity for us to explore the existing options available within the editor that keep development complexity to a minimum, and we&rsquo;re keen to do that and provide more value to Gravity Forms users via the block editor.&rdquo;</p>\n\n\n\n<p>On accessibility, the primary lesson the team learned is that there is no magic switch to make a site WCAG compliant. It takes a holistic approach. WordPress, themes, and plugins must each do their parts to make this path easier for users.</p>\n\n\n\n<p>&ldquo;What we have done is invest in learning as much as we can about accessibility, the challenges of accessible forms, and worked with Rian Rietveld and the team at Level Level to make creating accessible forms easier and faster,&rdquo; he said.</p>\n\n\n\n<p>Gravity Forms 2.5 introduces new tools to enable accessible forms and outputs warnings when a user is configuring a form in a way that would pose an issue. The team also has extensive <a href=\"https://docs.gravityforms.com/gravity-forms-commitment-to-accessibility/\">documentation on accessibility</a> and a <a href=\"https://www.gravityforms.com/a-guide-to-gravity-forms-2-5/\">blog post</a> covering it in the context of version 2.5.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve committed ourselves to making accessibility and accessibility testing a part of our development process,&rdquo; said Giroux.</p>\n\n\n\n<p>Outside of mentioning that the current release is the foundation going forward and excitement over new ideas, he remained tight-lipped about specific features in the pipeline for version 2.6 and beyond.</p>\n\n\n\n<h2>Competition and the Forms Market</h2>\n\n\n\n<img />Extensions from the Certified Add-On program.\n\n\n\n<p class=\"has-drop-cap\">For years, few developers or companies could afford the time and monetary investment of creating visual builders, for forms or otherwise. It is no small feat to accomplish what Gravity Forms and others have done in the past. However, the block system is a set of APIs that could take some legwork out of the equation. Eager developers might see this as an opportunity to carve out their own slice of the market.</p>\n\n\n\n<p>Even while Gravity Forms is taking cues from core WordPress, the block editor could level the playing field, introducing new competition.</p>\n\n\n\n<p>&ldquo;I&rsquo;m very excited by what we&rsquo;re seeing plugin developers do with the functionality in the WordPress editor,&rdquo; said Giroux. &ldquo;Giving users common patterns that work the same regardless of the developer, I believe, will only help further adoption of WordPress and the plugins that capitalize on the power of the editor. Gravity Forms is more than just a form builder, it&rsquo;s a platform for building some pretty exciting workflows which can be challenging to adapt to the pace of change in the editor. As the development cycle matures and becomes more predictable, I&rsquo;m eager to see how more complex plugin ecosystems like ours adapt to it.&rdquo;</p>\n\n\n\n<p>The Gravity Forms team looks at forms as &ldquo;just the tip of the iceberg,&rdquo; seeing value in helping web professionals solve problems with different types of business data.</p>\n\n\n\n<p>Even in an increasingly crowded space, they have tripled their team size in the past two years, launched a <a href=\"https://www.gravityforms.com/certified-developers-and-add-ons/\">Certified Developer program</a>, and upgraded their support and user feedback system.</p>\n\n\n\n<p>&ldquo;We are committed to being the most reliable, secure, and accessible form solution, and I think that&rsquo;s what keeps us relevant,&rdquo; said Giroux. &ldquo;The WordPress ecosystem is maturing, and while it is harder to stand out today than perhaps a few years ago, there is still a lot of opportunity for great ideas and great innovation, just like we&rsquo;re seeing with the WordPress editor.&rdquo;</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, 28 Apr 2021 21:44:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:75:\"WordPress.org blog: Getting Started with the Figma WordPress Design Library\";s:7:\"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=10173\";s:7:\"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:91:\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\";s: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:18151:\"<p>Created by James Koster, (<a href=\"https://profiles.wordpress.org/jameskoster/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jameskoster</a>)</p>\n\n\n\n<p>As the name suggests, the WordPress Design Library is a library of WordPress design assets, enabling anyone to quickly create design prototypes for WordPress UI in Figma.</p>\n\n\n\n<p>These tools are useful for designers when creating new UI and for anyone looking to contribute ideas, enhancements, or even solutions to bug reports. Sometimes pictures really do speak a thousand words.</p>\n\n\n\n<p>In this post, we&#8217;ll talk about some key features of Figma before diving into a practical example that demonstrates some of the WordPress Design Library utilities.</p>\n\n\n\n<h2><strong>What Is Figma?</strong></h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=632%2C296&ssl=1\" alt=\"\" class=\"wp-image-10174\" width=\"632\" height=\"296\" /></div>\n\n\n\n<p><a rel=\"nofollow\" href=\"https://www.figma.com/\">Figma</a> is a collaborative design tool that members of the WordPress project&#8217;s design team have<a href=\"https://make.wordpress.org/design/2018/11/19/figma-for-wordpress/\"> been using</a> for several years to work on and share design concepts. It offers a variety of handy features such as: in-browser access, rich prototyping tools, component libraries, code inspectors, live embeds, inline commenting, plugins, and much much more.</p>\n\n\n\n<p>Perhaps best of all, it is totally free to sign up and start playing around. If you join the WordPress.org Figma organization (instructions below), you&#8217;ll gain access to the WordPress Design Library enabling you to design WordPress UI in no time.</p>\n\n\n\n<h2><strong>What Is the WordPress Design Library?</strong></h2>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In Figma, you can share components and styles by publishing them, transforming your file into a library so that you can use instances of those components in other files.</p><p></p><p></p><cite><a rel=\"nofollow\" href=\"https://www.figma.com/best-practices/components-styles-and-shared-libraries/#:~:text=Libraries%3A%20In%20Figma%2C%20you%20can,instances%20of%20your%20components%20live.\">Figma.com</a></cite></blockquote>\n\n\n\n<p>It may be easiest to think of the WordPress Design Library as a visual representation of all the javascript components that compose UI in the WordPress codebase. As an end user of the library, you can use those components in a self-contained environment to create new interface designs. It&#8217;s kind of like a big LEGO box containing all the UI pieces (buttons, form inputs, etc.) that you can use to create and try out new designs.</p>\n\n\n\n<div class=\"juxtapose\"><img id=\"10175\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image13.png?resize=632%2C340&ssl=1\" alt=\"\" width=\"632\" height=\"340\" class=\"image-compare__image-before\" /><img id=\"10176\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image6.png?resize=632%2C340&ssl=1\" alt=\"\" width=\"632\" height=\"340\" class=\"image-compare__image-after\" /></div>\n\n\n\n<p>Creating designs with these assets enables rapid ideation on new interfaces by removing mundane processes that one would ordinarily have to work through. Nobody wants to repeatedly double-check that the button they made perfectly matches the buttons rendered by the code! And on the flip-side of that coin, anyone sharing a design with others will generally endeavor to make specific elements (like buttons) match what exists in the code as closely as possible. The WordPress Design Library solves both these headaches and more.</p>\n\n\n\n<p>An additional benefit to these assets visually matching what exists in the codebase is that any designs you create with them will inherently make use of the latest WordPress design language and consequently <em>feel</em> like WordPress with almost no effort required. Passing such designs on to developers makes them easier to interpret and implement too.</p>\n\n\n\n<h2><strong>Figma Fundamentals</strong></h2>\n\n\n\n<p>Before getting into the practical section of this post, let&#8217;s quickly cover some of the fundamental features of Figma libraries. This will help prepare us for working with the WordPress Design Library.</p>\n\n\n\n<h3><strong>Components</strong></h3>\n\n\n\n<p>As we touched on above, the library consists of &#8220;components&#8221; that serve as visual counterparts to their code-based equivalents. That is to say, there is a Button component in Figma, <em>and</em> a matching Button component in the WordPress codebase.</p>\n\n\n\n<p>But what <em>is</em> a Figma component?</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Components are elements you can reuse across your designs. They help to create and manage consistent designs across projects.</p><p></p><cite><a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360038662654-Guide-to-Components-in-Figma\">help.figma.com</a></cite></blockquote>\n\n\n\n<p>Let&#8217;s quickly explore some of the properties of Figma components to understand the ways they help when working on our next design.</p>\n\n\n\n<h3><strong>Variants</strong></h3>\n\n\n\n<p>Some Figma components offer variants. One example is Button(s) which all have the following states:</p>\n\n\n\n<ul><li>Resting</li><li>Hover</li><li>Focus</li><li>Disabled</li></ul>\n\n\n\n<p>These can be manipulated via the variants interface in Figma:</p>\n\n\n\n<img width=\"632\" height=\"449\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=632%2C449&ssl=1\" alt=\"\" class=\"wp-image-10179\" />\n\n\n\n<p>Other examples of components with variants are form inputs and menu items. Variants are a new feature in Figma, so we&#8217;ll be adding more over time.</p>\n\n\n\n<h3><strong>Overrides</strong></h3>\n\n\n\n<p>Although any components you insert are intrinsically linked to the master component in the library, it is possible to override some properties.</p>\n\n\n\n<p>While working with an instance of the Button component, you can change things like the label, or even the background color, while maintaining the link to the master component in the library. If you&#8217;re familiar with git workflows, this is kind of like creating a local branch. Any changes you make can easily be reset in a couple of clicks.</p>\n\n\n\n<img width=\"632\" height=\"527\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=632%2C527&ssl=1\" alt=\"\" class=\"wp-image-10180\" />\n\n\n\n<p>Overrides made to your local instance will persist even when the master component is updated. So if your design calls for a button with a green background, you can apply that override safely with the knowledge that even if the master component is updated, your button can inherit those updates and remain green.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>We&#8217;ve only really scratched the surface of components here. So I would recommend the official <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360038662654-Guide-to-Components-in-Figma\">Figma documentation</a> for more advanced information.</p>\n\n\n\n<h3><strong>Figma Styles</strong></h3>\n\n\n\n<p>In addition to components, styles are also published as part of the WordPress Design Library. They have similar properties to components in that a master style exists in the library and can be utilized in your local Figma file. Just like Components, Styles will receive updates when changes to the library are published.</p>\n\n\n\n<p>Styles are used to define colors, typographical rules, and effects like drop-shadows present in the WordPress codebase. They enable you to apply things like text or background colors that will match other UI parts.</p>\n\n\n\n<p>Using Styles from the library, you ensure that your creations match existing UI elements, making it easier to implement.</p>\n\n\n\n<img width=\"632\" height=\"799\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=632%2C799&ssl=1\" alt=\"\" class=\"wp-image-10181\" />\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>To learn more about styles in Figma, I recommend the <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360039238753-Styles-in-Figma\">official documentation</a>.</p>\n\n\n\n<h3><strong>Views and Stickers</strong></h3>\n\n\n\n<p>&#8220;Stickers&#8221; are simply arrangements of Components and Styles that have been combined to represent common UI elements. They are not good candidates for full componentization due to their frequent customization needs. Examples of Stickers include the Inspector sidebar and the block inserter:</p>\n\n\n\n<img width=\"632\" height=\"770\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=632%2C770&ssl=1\" alt=\"\" class=\"wp-image-10182\" />\n\n\n\n<p>Their utility is simple: find the sticker you need, peel (copy) it from the WordPress Design Library, and stick (paste) it into your local file before customizing as needed.</p>\n\n\n\n<p><em>Stickers</em> are not Figma features like Components and Styles, but any stickers you copy to a working file will stay up to date by virtue of their underlying assets.</p>\n\n\n\n<p><em>Views</em> are arrangements of components, styles, <em>and</em> stickers.</p>\n\n\n\n<h2><strong>Designing a Block Using the WordPress Design Library</strong></h2>\n\n\n\n<p>Okay, now that we have a handle on the basics of Figma libraries and their features and the utilities of the WordPress Design Library like Stickers and Views, let&#8217;s work through a practical example – designing the UI for a brand new block.</p>\n\n\n\n<h3><strong>Getting Started</strong></h3>\n\n\n\n<p>All you need to get started is a Figma account added to the WordPress.org Figma organization.</p>\n\n\n\n<p>Once you&#8217;ve signed up at<a href=\"https://www.figma.com/\"> Figma</a>, simply join the<a href=\"http://wordpress.slack.com/messages/design/\"> #Design</a> channel on the community Slack and request an invite. Include your Figma username, and a friendly community member will help get you set up in no time.</p>\n\n\n\n<p>Now the fun begins!</p>\n\n\n\n<p>To create a fresh new design file in Figma, visit the<a href=\"https://www.figma.com/files/project/1339415/Gutenberg?fuid=652576565531990233\"> Gutenberg project</a> and click the &#8220;+ New&#8221; button.</p>\n\n\n\n<img width=\"632\" height=\"395\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=632%2C395&ssl=1\" alt=\"\" class=\"wp-image-10183\" />\n\n\n\n<p>Now let&#8217;s include the WordPress Design Library in our working file so that we have access to all the goodies we&#8217;ll need:</p>\n\n\n\n<ol><li>Open the &#8220;Assets&#8221; panel and click the little book icon to view the available Team Libraries.</li><li>In the modal, toggle the WordPress Design Library on. You can leave the others off for now.</li></ol>\n\n\n\n<img width=\"632\" height=\"341\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=632%2C341&ssl=1\" alt=\"\" class=\"wp-image-10184\" />\n\n\n\n<p>After closing the modal, you&#8217;ll notice a number of components become visible in the assets panel. To insert them, they can be dragged on to the canvas:</p>\n\n\n\n<img width=\"632\" height=\"341\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=632%2C341&ssl=1\" alt=\"\" class=\"wp-image-10185\" />\n\n\n\n<p>It&#8217;s kind of like inserting a block <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n\n\n\n<h3><strong>Creating a Pizza Block <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f355.png\" alt=\"🍕\" class=\"wp-smiley\" /></strong></h3>\n\n\n\n<p>I love to eat pizza, so for fun, I&#8217;m going to design a new block that simply allows the user to display a delicious pizza in their posts and pages. I want the block to include options for a total number of slices and different toppings.</p>\n\n\n\n<h3><strong>Work Out the Flow</strong></h3>\n\n\n\n<p>I always like to concentrate on individual flows when designing blocks. That is to say, the linear steps a user will take when working with that block. In this case, I want to create visualizations of the following steps/views in our Figma file:</p>\n\n\n\n<ol><li>Inserting the block from the Block Inserter</li><li>The Pizza Block placeholder state including options in the block, its Toolbar, and the Inspector</li><li>The configured Pizza Block settings</li><li>The end result – a delicious pizza sitting comfortably on the canvas</li></ol>\n\n\n\n<h3><strong>Sketch the New States</strong></h3>\n\n\n\n<p>Thanks to the WordPress Design Library, I&#8217;ll be using as many existing UI components as possible, but I still need a rough idea of how they will be composed in the new interfaces that my Pizza block will require. I normally find it helpful to sketch these out on paper.</p>\n\n\n\n<p>Here&#8217;s the placeholder state which users will see when they first insert the block. This should be all I need:</p>\n\n\n\n<img width=\"632\" height=\"843\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image2.png?resize=632%2C843&ssl=1\" alt=\"\" class=\"wp-image-10186\" />\n\n\n\n<h3><strong>Prepare the Views and Stickers</strong></h3>\n\n\n\n<p>Helpfully, there are Views in the WordPress Design Library I can use for each of the steps in the flow outlined above.</p>\n\n\n\n<p>I open the library, navigate to the Views page, find the views I need, copy them, and paste into my working file.</p>\n\n\n\n<img width=\"632\" height=\"374\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=632%2C374&ssl=1\" alt=\"\" class=\"wp-image-10187\" />\n\n\n\n<p>It is very important to <strong>copy</strong> (not cut) Views from the library so that they remain intact and other people can still access them. If you cut them, they&#8217;ll be gone forever, so please don&#8217;t do that <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n\n\n\n<p>I&#8217;m also going to need a block placeholder sticker, so I navigate to the Stickers page, copy the one that most closely resembles my sketch from before, and paste it into my working file.</p>\n\n\n\n<img width=\"632\" height=\"374\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=632%2C374&ssl=1\" alt=\"\" class=\"wp-image-10188\" />\n\n\n\n<p>As with views, please only <strong>copy</strong> stickers; do not cut them.</p>\n\n\n\n<h3><strong>Gather the Components</strong></h3>\n\n\n\n<p>Referring back to the placeholder state I sketched out on paper (it can be helpful to import this into your Figma file), I can see that I&#8217;m going to need some form elements to realize the design.</p>\n\n\n\n<img width=\"632\" height=\"446\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=632%2C446&ssl=1\" alt=\"\" class=\"wp-image-10189\" />\n\n\n\n<p>I navigate to the Assets panel, locate the components I need, and drag them into my file:</p>\n\n\n\n<img src=\"https://lh5.googleusercontent.com/UDyZdtZGo9N0e2qwgyIyz8V3xu9_zwGW9qBbBnozvwmXmVYURZ-ROLANtW7FafWYbQRnPQNWeRupk_9_1nzmKn8gRBlYDMKYR3QpwAubv8ZKAPMS_uV9VaYHsjfPItfqPiY0d1X5\" alt=\"\" />\n\n\n\n<p>Helpful tip: Once a component has been inserted, you can transform it into another component via its settings panel. Sometimes it is easier to copy/paste a component you already inserted and transform it this way, rather than opening the assets panel over and over.</p>\n\n\n\n<h3><strong>Arrange the Views, Stickers, and Components to Create a Coherent Design</strong></h3>\n\n\n\n<p>Now that we’ve gathered all the individual pieces we need, it&#8217;s simply a case of arranging them so that they resemble each of the steps of the flow we outlined before. This is done with simple drag and drop.</p>\n\n\n\n<p>If you&#8217;re familiar with software like Photoshop, Sketch, and others, this should feel very familiar.</p>\n\n\n\n<img src=\"https://lh3.googleusercontent.com/DVeU3I9ajqRvMD_e5q6G5vctb4TGbgA9CsIR9xYZ3yPqtmPhbDP9cODTHH4KS-I8GB9R4UF2DV6SSsayKpy45AEDvvY2gLbMsCA0ivfsqGcm509OWeTOpaMuQcv7TFz6-xoiKFfo\" alt=\"\" />\n\n\n\n<p>Once everything is in place, our flow is complete:</p>\n\n\n\n<a href=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?ssl=1\"><img width=\"632\" height=\"97\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=632%2C97&ssl=1\" alt=\"\" class=\"wp-image-10238\" /></a>\n\n\n\n<p>I still find it incredible that we&#8217;re able to do this in just a few short moments.</p>\n\n\n\n<h3><strong>Hook up the Prototype</strong></h3>\n\n\n\n<p>With each step of our flow created, the last piece of the puzzle is to connect them and form a clickable prototype.</p>\n\n\n\n<p>I switch to the Prototype panel and create click behaviors by selecting a layer, then dragging the white dot to the corresponding frame.</p>\n\n\n\n<img src=\"https://lh5.googleusercontent.com/i0fLdjWZhRTNFCKvHLLEfUnFx5CIm7p014R1avEV02F_B4DrG1v6Cw-XqYBth9JVYylylM7_mkqcALWEWcUVf0dRhgixJRtmsRIDHyMIZyom2cPdetMAFixgsvsmrqT03Xevync7\" alt=\"\" />\n\n\n\n<p>There are a variety of behaviors that the Figma prototyping tools support, such as a hover, drag, and click. It is even possible to create smart animations. Perhaps that&#8217;s something we can explore in another tutorial, but for now, I will refer you to the <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360040314193-Guide-to-prototyping-in-Figma\">Figma documentation</a> for more advanced prototyping.</p>\n\n\n\n<p>Now that I&#8217;ve connected all the appropriate elements, I am able to take my prototype for a test drive by clicking the Play <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/25b6.png\" alt=\"▶\" class=\"wp-smiley\" /> icon:</p>\n\n\n\n<img src=\"https://lh3.googleusercontent.com/nBmEr4ohZ8RsjLM5wm4u8UY_zzTE0V1bXj-uoNV79WDibl5bgkZXY64ixl_BgNutg74fvxRZokUtLzWuWVlD46W4tAD_-Dcf-TclgIR9UoO73oCmNxmfcSEmUDgDG0e5WYFJ80tH\" alt=\"\" />\n\n\n\n<p>You can try it too; just click <a href=\"https://www.figma.com/proto/BmRYWzfrakFwsmIQa24xqx/Pizza-Block?page-id=0%3A1&node-id=48%3A767&viewport=1792%2C385%2C0.46477335691452026&scaling=min-zoom\">here</a>.</p>\n\n\n\n<h2><strong>That&#8217;s All, Folks!</strong></h2>\n\n\n\n<p>I tried to keep this tutorial fairly simple and concise; even though we only really got to grips with the basics here, you can see the power of Figma and the WordPress Design Library when it comes to trying out new designs.</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, 28 Apr 2021 17:52: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: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:\"\";}}}}}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:62:\"WPTavern: Creative Commons Search to Relaunch on WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115690\";s:7:\"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:169:\"https://wptavern.com/creative-commons-search-to-relaunch-on-wordpress-org?utm_source=rss&utm_medium=rss&utm_campaign=creative-commons-search-to-relaunch-on-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3493:\"<p>The <a href=\"https://search.creativecommons.org/\">Creative Commons search engine</a> will soon be part of WordPress.org, as Automattic will begin sponsoring several members of the CC Search team to maintain it. The engine currently offers over 500 million images, audio, and videos, under Creative Commons licenses or the public domain, aggregating more than 45 different sources. </p>\n\n\n\n<p>Matt Mullenweg <a href=\"https://ma.tt/2021/04/cc-search-to-join-wordpress-org/\">announced</a> the acquisition on his personal blog, saying that CC Search would be &ldquo;joining the WordPress project.&rdquo; It is a major benefit to the community, providing a valuable resource for finding GPL-compatible images for use in WordPress-derivative products like themes and plugins. Mullenweg hinted at a long-term plan where deeply integrating CC search into WordPress.org is just the first step: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I am eager to give a new home to their open search product on WordPress.org in continued commitment to open source freedoms, and providing this community resource for decades to come. This is an important first step to provide a long-term, sustainable challenger to proprietary libraries like Unsplash.</p></blockquote>\n\n\n\n<p>The reference to Unsplash follows the company&rsquo;s <a href=\"https://wptavern.com/unsplash-responds-to-image-licensing-concerns-clarifies-reasons-for-hotlinking-and-tracking\">controversial licensing changes</a>, where it abandoned CC0 licensing in 2017 after making a name for itself by offering images originally shared to the public domain. That body of work was hidden away by Unsplash&rsquo;s refusal to use its API to differentiate these CC0 images going forward. In July 2020, the controversy was renewed after Unsplash launched its official WordPress plugin. Some users are apprehensive about the company&rsquo;s willingness to change its license and terms in the future, especially after <a href=\"https://unsplash.com/blog/unsplash-getty/\">Unsplash was acquired by Getty Images</a>. </p>\n\n\n\n<p>Creative Commons search remains one of the few places to find CC0-licensed images that are compatible with the GPL. It will be interesting to see how this news of CC Search finding a new home on WordPress.org will affect Automattic&rsquo;s relationship with Pexels, another image library with even more restrictive licensing than Unsplash. Access to Pexels was <a href=\"https://wordpress.com/blog/2018/08/02/diverse-stock-photo-library-pexels/\">added to WordPress.com in 2018</a> and is also <a href=\"https://jetpack.com/support/jetpack-blocks/pexels-free-photo-library/\">integrated with Jetpack</a>.</p>\n\n\n\n<p>&ldquo;When I started CC Search, I always hoped it would become part of the infrastructure of the Internet,&rdquo; former Creative Commons CEO <a href=\"https://twitter.com/ryanmerkley\"></a>Ryan Merkley&nbsp; said. &ldquo;Matt Mullenweg and I first talked about CC Search in 2018, and he immediately saw the potential. I&rsquo;m so happy to see this happen. It&rsquo;s great for WordPress, and great for the Commons.&rdquo;</p>\n\n\n\n<p>Mullenweg&rsquo;s announcement said he anticipates CC search will be live and and running on WordPress.org in a few weeks. The new Automattic employees who were hired from Creative Commons will have their contributions sponsored by the company as part of the company&rsquo;s <a href=\"https://wordpress.org/five-for-the-future/pledge/automattic/\">Five for the Future commitment</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, 28 Apr 2021 04:42: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: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:73:\"WPTavern: Churel Is a Colorful and Minimalist Block-Ready WordPress Theme\";s:7:\"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=115663\";s:7:\"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:191:\"https://wptavern.com/churel-is-a-colorful-and-minimalist-block-ready-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=churel-is-a-colorful-and-minimalist-block-ready-wordpress-theme\";s: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:5311:\"<img />\n\n\n\n<p class=\"has-drop-cap\">WordPress theme development company Themix released its third free theme to the official directory this week. <a href=\"https://wordpress.org/themes/churel/\">Churel</a> is described as a theme for organizations and businesses that also works for traditional blogging.</p>\n\n\n\n<p>The development team has a keen eye for modern color schemes and font families. The theme has a refreshing design that is rare for the free theme directory, at least at first glance. It is the sort of project with just the right amount of eye candy to pull users in.</p>\n\n\n\n<p>If that was everything necessary for great design, the theme would land in my top 10 picks from WordPress.org without a second thought. However, after digging deeper, it was clear the design had some issues. They are fixable. It would not take much nudging of a few CSS rules to make this a much better theme, so let&rsquo;s just dive right into the problems before getting into the good stuff.</p>\n\n\n\n<p>The theme&rsquo;s most clear-cut flaw is with its typography. Sizing and words-per-line work well enough. The default Open Sans font is rarely a poor choice for readability. However, the line height is far too large for a good flow, and the white space between paragraphs makes it tough to tell where one ends and the other begins. It is almost as if the team got halfway through with fine-tuning the typography and decided to simply stop. It is a glaring issue that makes the theme practically unusable for long-form content, but it could be addressed with two minor style changes.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Default body copy.</li><li class=\"blocks-gallery-item\"><img />Adjusted body copy.</li></ul>\n\n\n\n<p>For a theme &ldquo;designed to take full advantage of the flexibility of the block editor,&rdquo; it is missing one crucial component: editor styles. It is marked with the official &ldquo;Block Editor Styles&rdquo; tag in the directory and passed through the review process with no mention of it. </p>\n\n\n\n<p>This seems like an oversight. Maybe something was lost in the build process or accidentally deleted before submission.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Front end design.</li><li class=\"blocks-gallery-item\"><img />Block editor design.</li></ul>\n\n\n\n<p>Churel relies on the Kirki Customizer Framework, a requirement for accessing any theme options. Most controls the theme uses are built directly into WordPress. It does not make much sense to tie them to the activation of a third-party plugin, particularly for its simple color options.</p>\n\n\n\n<p>Despite its faults, I fell in love with its homepage design immediately. The modern card design coupled with a minimalist page layout and bright colors makes me want to explore. <em>And, you just got to love the ghost in the <a href=\"https://wp-churel.themeix.com/\">demo</a> logo, right?</em></p>\n\n\n\n<img />Churel theme homepage.\n\n\n\n<p>I also welcome any theme that actually creates a unique design for sticky posts on the homepage. Far too many theme authors either ignore it in whole or relegate it to a last-minute addition. The design team did not go overboard, but they made sure that readers know, &ldquo;Hey, this is important,&rdquo; while keeping it simple.</p>\n\n\n\n<p>Other elements are attractive about the theme, such as its subscription/newsletter area in the page footer. The attention to detail when styling the core widgets means everything looks good in the theme&rsquo;s sidebars. And a handful of animations sprinkled throughout the design, such as floating circles and an underline effect on post title links, add an extra dimension without feeling clunky.</p>\n\n\n\n<p>Churel is almost a top-tier block-ready WordPress theme. With a handful of trivial CSS changes and &mdash; I will sound like a broken record to regular readers &mdash; some block patterns, it could be.</p>\n\n\n\n<p>The theme&rsquo;s &ldquo;Authors&rdquo; page template is an example of a missed opportunity for a block pattern. The page template itself might be perfect for some but not others. It automatically lists administrators and authors along with their profiles. By overlooking other roles that can publish posts, the system is rigid. &ldquo;Authors&rdquo; or, more commonly, &ldquo;team&rdquo; pages are an ideal fit for the block system. Site administrators could quickly create and customize such a page if they merely had a pattern for doing so.</p>\n\n\n\n<img />Churel theme &ldquo;Authors&rdquo; page template.\n\n\n\n<p>A pattern built from the Columns block with nested Image, Heading, Separator, and Social Icons blocks would make this easy. Throw in an &ldquo;alternating colors&rdquo; block style (or just let users control the colors) for the Columns, and users can build what they want more easily than theme authors doing guesswork about what user profiles should appear.</p>\n\n\n\n<p>The block editor exists to solve these problems, and theme authors are leaving half their tools in the bag. <a href=\"https://wptavern.com/block-patterns-will-change-everything\">Block patterns will be a cornerstone</a> of theme design in the coming years.</p>\n\n\n\n<p>I may be overusing the term as of late, but this yet another theme that has <em>potential</em>. It is not the best that it can be yet, but it is a decent 1.x launch.</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, 27 Apr 2021 21:09:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:37:\"Matt: CC Search to join WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=54079\";s:7:\"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:54:\"https://ma.tt/2021/04/cc-search-to-join-wordpress-org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1426:\"<img />\n\n\n\n<p>The WordPress community has long advocated for a repository with GPL-compatible images, and it’s time to listen to that need. CC Search, a CC0 (<a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">Creative Commons Zero</a>) image search engine, is joining the WordPress project with over 500 million openly licensed and public domain images discoverable from over 50 sources, audio and video soon to come.</p>\n\n\n\n<p>I am a long-time supporter of <a href=\"https://creativecommons.org/\">Creative Commons</a> and their influential work on open content licenses, and when we heard they were considering shutting down their CC Search engine we immediately started exploring ways we could keep it going. I am eager to give a new home to their open search product on WordPress.org in continued commitment to open source freedoms, and providing this community resource for decades to come. This is an important first step to provide a long-term, sustainable challenger to proprietary libraries like Unsplash.</p>\n\n\n\n<p>Automattic has hired key members of the CC Search team and will sponsor their contributions as part of <a href=\"https://wordpress.org/five-for-the-future/pledge/automattic/\">our Five for the Future commitment</a>. I look forward to seeing the project grow and welcome them to the WordPress community! Will share in a few weeks when everything is live and running on the site.</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, 27 Apr 2021 17:36:15 +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: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:52:\"WordPress.org blog: Curious About Full Site Editing?\";s:7:\"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=10190\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\";s: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:2790:\"<p>The second major release of the year is right around the corner. You might have heard a <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">bit of buzz</a> about full site editing around your WordPress circles, so this post will give you some big picture things to know as well as a few wayfinding links for anyone who wants to know more.</p>\n\n\n\n<p><strong>For Site Owners and Operators</strong></p>\n\n\n\n<p>If you own and operate a WordPress site, updating to version 5.8 should be a seamless experience, just like any other update. All the conversation around full site editing is very exciting, but shouldn’t be alarming—<strong>everything in the next release that relates to full site editing is opt-in</strong>. To experiment freely with it, you need a theme that is built for it. Check the links at the end to see a few examples!</p>\n\n\n\n<p><strong>For Agencies and Theme/Plugin Developers</strong></p>\n\n\n\n<p>If you extend the functionality of the WordPress CMS for clients, updating to version 5.8 should also be seamless. As always, it’s smart to spot-check custom implementations in a staging environment or fully test when the release candidate is made available. Want to test your products and get everything client-ready? Check out any of the testing options below.</p>\n\n\n\n<p><strong>For Contributors and Volunteers</strong></p>\n\n\n\n<p>If you contribute time and expertise to the WordPress project, you can join us in the interesting work leading up to the WordPress 5.8 release and update your site with the deep satisfaction of a job well done. There is a lot that goes into every release—from design and development to documentation and translation; if you’ve got some time to spare, and want to help support the project that supports the tool that supports your site (whew!), check out the links below.</p>\n\n\n\n<h2>Resources</h2>\n\n\n\n<ul><li>A few block themes: <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks</a>, <a href=\"https://wordpress.org/themes/hansen/\">Hansen</a>, <a href=\"https://wordpress.org/themes/block-based-bosco/\">Block-based Bosco</a>, <a href=\"https://wordpress.org/themes/q/\">Q</a></li><li>A few focus areas: <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">Gutenberg plugin focuses</a></li><li>A few ways you can test: <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a>, <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Beta testing plugin</a>, <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/#nightly\">Gutenberg Times nightly build</a></li><li>A few pieces of documentation: <a href=\"https://developer.wordpress.org/block-editor/handbook/full-site-editing/\">Full Site Editing Overview</a></li></ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Apr 2021 17:26:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:87:\"WPTavern: Will We See In-Person WordCamps in 2021? An Open Discussion on a Path Forward\";s:7:\"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=115641\";s:7:\"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:217:\"https://wptavern.com/will-we-see-in-person-wordcamps-in-2021-an-open-discussion-on-a-path-forward?utm_source=rss&utm_medium=rss&utm_campaign=will-we-see-in-person-wordcamps-in-2021-an-open-discussion-on-a-path-forward\";s: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:3613:\"<p class=\"has-drop-cap\">Now that COVID-19 vaccinations are becoming more widespread, many hope that in-person WordCamps can once again be a reality. There is no official path forward just yet, and decisions will likely be locally based in the coming months. Angela Jin, a community organizer for Automattic, announced an <a href=\"https://make.wordpress.org/community/2021/04/26/discussing-the-path-to-in-person-wordcamps/\">open discussion around the topic</a>.</p>\n\n\n\n<p>Currently, all WordCamps are online-only events. There is no official decision on when in-person events will begin anew.</p>\n\n\n\n<p>This is a follow-up to an earlier <a href=\"https://wptavern.com/wordpress-community-team-discusses-return-to-in-person-events\">discussion that began in December 2020</a>. It served as an initial opinion-gathering mission. For communities that have more effectively contained the COVID-19 spread, the Community Team <a href=\"https://make.wordpress.org/community/2021/02/16/announcement-decision-making-checklist-for-in-person-meetups-now-available/\">posted guidelines and a checklist</a> for local Meetups in February.</p>\n\n\n\n<p>Most of the ideas from the December 2020 dialogue are at the forefront of the current open discussion. Mandatory masks, restricting the length of events, limiting attendance, and capping attendance according to the venue&rsquo;s capacity top the list.</p>\n\n\n\n<p>One of the tougher-to-achieve goals might be setting up safety guidelines around food or drink, which are often steeped in the local culture. It will also be a primary safety concern.</p>\n\n\n\n<p>Mandatory registration is on the table. This would allow organizers to contact attendees in case of exposure.</p>\n\n\n\n<p>Other suggestions center on maintaining local events, which is what WordCamp is all about. While some of the conferences are held in major cities and draw international crowds and speakers, this could be an opportunity to make sure that events focus directly on their communities. It would also be necessary for containing any spread of the virus or variants to outside populations.</p>\n\n\n\n<p>There is one suggestion to recommend that only vaccinated conference-goers attend. This would likely fall under an honor system. Making this mandatory could create potential hurdles based on local jurisdictions. For example, there is a House Bill in Alabama, my home state, that would not allow entertainment events to &ldquo;discriminate&rdquo; based on vaccination status if passed. I have yet to verify if WordCamps fall under the definition of &ldquo;entertainment events&rdquo; like a concert or sports match.</p>\n\n\n\n<p>There are still many unknowns at this point, and every potential in-person WordCamp would have to follow local laws. However, we are nearing a time where such events may once again be a reality.</p>\n\n\n\n<p>&ldquo;I&rsquo;m going to get a little more personal here: returning to in-person WordCamps is going to be an emotional experience that is going to affect everyone differently,&rdquo; Jin said in a final note, sharing thoughts that echo throughout the WordPress ecosystem.</p>\n\n\n\n<p>&ldquo;The WordPress community has a big range of introverts to extroverts, and we&rsquo;ve gone through major changes to how we interact with each other. For all that I want to hug everyone, it also is strange and a bit frightening to think about all that human contact after a year-and-then-some of this pandemic. Supporting organizers in bringing back WordCamps in a way that acknowledges and accommodates all our excitement and fears, as well as our love of WordPress, is a worthy goal.&rdquo;</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, 26 Apr 2021 20:35:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:62:\"WPTavern: FLoC Blocking Discussion Continues on WordPress Trac\";s:7:\"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=115523\";s:7:\"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:169:\"https://wptavern.com/floc-blocking-discussion-continues-on-wordpress-trac?utm_source=rss&utm_medium=rss&utm_campaign=floc-blocking-discussion-continues-on-wordpress-trac\";s: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:4580:\"<p>Last week WordPress contributors began a heated <a href=\"https://wptavern.com/wordpress-contributors-propose-blocking-floc-in-core\">discussion regarding blocking FLoC</a> (Federated Learning of Cohorts). Google&rsquo;s experimental alternative to third-party cookies has become a highly contentious topic that made its way into last week&rsquo;s Core developers meeting. </p>\n\n\n\n<p>Representatives from the Chrome team also attended the meeting to clear up any confusion and answer questions about how FLoC currently works. They <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1619037652084400\">related</a> that during the FLoC Origin Trial (the process by which Chrome introduces new proposed API&rsquo;s for feedback from developers), a page will only be included in the browser&rsquo;s FLoC computation for one of two reasons:</p>\n\n\n\n<ul><li>The FLoC API&nbsp;<code>document.interestCohort()</code>&nbsp;is used on the page.</li><li>Chrome detects that the page&nbsp;<a target=\"_blank\" href=\"https://github.com/WICG/floc/issues/82\" rel=\"noreferrer noopener\">loads ads or ads-related resources</a>.</li></ul>\n\n\n\n<p>&ldquo;In the final end state, we expect the way FLoC will work is that the only pages that will be relevant to calculating your cohort are the pages that call the FLoC API,&rdquo; Chrome representative Michael Kleber said. &ldquo;So pages will &lsquo;opt in&rsquo; by using some new JS function call.&rdquo;</p>\n\n\n\n<p>Since FLoC is still in the the beginning stages, the Chrome team cannot confirm the final behavior for what pages will be included in FLoC calculations. At this point, it seems like it will primarily affect publishers and ad-supported websites in the future.</p>\n\n\n\n<p>Although the authors and proponents of the proposal prescribed immediate action, WordPress&rsquo; leadership has determined that an implementation discussion is premature at this time. </p>\n\n\n\n<p>&ldquo;I am now amending my posted request for a reworking of the proposal &ndash; I do not want to see another proposal for action in WordPress right now,&rdquo; WordPress lead developer Helen Hou-Sand&iacute; said during the meeting. &ldquo;What we need is a Trac ticket where we track the status of the FLoC trial/implementation and discuss periodically to see if action is needed. I have an opinion, but it&rsquo;s not really relevant at this time, and I think more of us should be comfortable with that idea.&rdquo;</p>\n\n\n\n<p>The Chrome team did not expect that many people would be considering FLoC at this point, as Origin Trials generally only attract a handful of people who are curious about the technical details. FLoC gained more widespread attention after the critical <a href=\"https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea\">article</a> from EFF. The <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/#comment-41168\">original proposal</a> on make.wordpress.org also attracted media attention due to its confusing approach, premature assumptions, and lack of critical <a href=\"https://make.wordpress.org/core/handbook/best-practices/post-comment-guidelines/#peer-review\">peer review</a>.</p>\n\n\n\n<p>Peter Wilson <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/#comment-41168\">commented</a> on behalf of WordPress&rsquo; security team after meeting to discuss the issue, stating that it is unequivocally not a security concern:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Treating this as WordPress currently treats any other&nbsp;security issue&nbsp;would require releasing 21 versions of WordPress. As identified in other comments on this thread, it would also break the implicit contract of security releases by including an&nbsp;enhancement&nbsp;in the release.</p><p>As a result of these consideration, the security team have concluded that treating this as a security issue is inappropriate.</p><p>Whether this is suitable to be included in WordPress and subsequently released as part of the next 5.7.x maintenance release are discussions for the&nbsp;Core&nbsp;team. The security team do not have a consensus view on these questions.</p></blockquote>\n\n\n\n<p>Hou-Sand&iacute; opened a <a href=\"https://core.trac.wordpress.org/ticket/53069\">ticket</a> where discussion continues on the implications of FLoC. As more information becomes available from Chrome&rsquo;s Origin Trial, WordPress contributors will be better prepared to discuss how it may affect publishers and whether a core block, privacy setting, or other action is necessary.</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, 26 Apr 2021 16:44: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: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:64:\"WordPress.org blog: WP Briefing: Your Opinion is Our Opportunity\";s:7:\"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=10171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2021/04/your-opinion-is-our-opportunity/\";s: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:13066:\"<p>In this episode, Josepha discusses the importance of co-development and testing for the continued growth and maintenance of the WordPress project.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2008/10/usability-testing-report-25-and-crazyhorse/\">2.5 Usability Testing Report&nbsp;</a></li><li><a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe 2021</a></li><li><a href=\"https://www.meetup.com/Pune-WordPress-Knowledge-Exchange/events/277520243/\">Pune Work Along (Self Study) Meetup</a></li><li><a href=\"https://fr.wordpress.org/2021/04/09/le-30-avril-2021-rejoignez-nous-pour-un-nouveau-wordpress-translation-day-fr/\">French Mini-Translation Day, April 30, 2021</a></li><li><a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">April 14, 2021, Full Site Editing Go/No-Go Demo Recap</a></li><li><a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">Full Site Editing Go/No-Go Next Steps</a></li><li><a href=\"https://make.wordpress.org/test/\">Test WordPress.org</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10171\"></span>\n\n\n\n<p>0:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>0:39</p>\n\n\n\n<p>Prior to Gutenberg, our current multi-year project that is changing the way we see WordPress, another multi-year project changed the way we saw WordPress. Starting in 2008, substantial changes to the WordPress interface came in a series of major releases, starting with WordPress 2.5. That was before my time in the project; I&#8217;ve only ever worked with the current dashboard in WordPress. But, from what I&#8217;ve read, the user testing that would have gone into it was a huge undertaking and very well coordinated. Now, WordPress has not taken on that type of robust testing project since, but starting around 2014 or 2015, a community testing practice was started. I&#8217;ve shared these calls for testing frequently, both on Twitter and in this podcast. But you may not really know why I find the testing program so valuable. So today, I&#8217;m going to explore with you the concept of co-developers in open source.</p>\n\n\n\n<p>1:52</p>\n\n\n\n<p>Open source software, like WordPress, is built by the people who show up. There are a few obvious groups when you think of software, the developers, designers, technical writers, folks who monitor the forums, and really, all the teams you find in our WordPress project. Co-developers or co-creators, if you&#8217;ll join me in making our tent a little bigger, refers to the users of an open source product who actively engage and contribute to the work by using the software and sharing any bugs that they find.</p>\n\n\n\n<p>2:25</p>\n\n\n\n<p>I mentioned this group in the episode about how WordPress improves. Specifically in that episode, I underlined that if you consider users to be part of the collaborative process, as long as people use your product, those people will have opinions about your product’s needs. And today, I&#8217;m extending that thought a bit further to say that, as long as there are opinions, there are opportunities.</p>\n\n\n\n<p>2:51</p>\n\n\n\n<p>When you know what isn&#8217;t working, you can focus your attention on a solution, you can focus on making sure that you can make it work. The existence of co-creators is one of the great things about open source. No designer or developer or product owner has to know every sort of user to be able to get feedback from them. If they show up, test the software and get their thoughts written down, then you can start to see patterns and common pain points. It is also, unfortunately, one of the great difficulties of being an open source project. After all, if users don&#8217;t show up, or don&#8217;t test, or don&#8217;t write down their feedback, it&#8217;s impossible to know what worked for them and what didn&#8217;t. And on top of that, with such a large percentage of the web being supported by WordPress in this case, not every problem is part of a pattern. And not all patterns are part of the current priorities.</p>\n\n\n\n<p>3:54</p>\n\n\n\n<p>Looking beyond that double-edged sword. Let&#8217;s say that this idea of a co-creator makes sense to you. And more than that, you feel like it describes you. What does it mean for you to show up in WordPress? There are lots of good ways to offer this sort of feedback and contribute to those patterns that can help us see through the fog. So I have for you a mini list and, of course, a bunch of links in the show notes for you.&nbsp;</p>\n\n\n\n<p>So some good ways. First, you can participate in any of the dedicated calls for testing. They are short and frequently have a guide. I participate in them and generally find them fun. I say generally because sometimes I also find them frustrating. That&#8217;s really okay too; the frustrations helped me to identify that I found a problem. And if I can find a problem, then I have saved someone else from finding that problem in the future. The second thing you can do is file a bug report with information about what happened when you ran into a problem and how someone like me could make your bug happen on their site. Bug</p>\n\n\n\n<p>5:00</p>\n\n\n\n<p>Reporting is one of the things I&#8217;ve grown to really love in my time and open source; I did not love it. At first, I was really scared to do it. I mostly used to send videos of the bugs that I found to other people and ask them to file the bug reports for me. But then, of course, I never knew whether they got fixed or not. So I was scared to do it at first. But once I figured out what makes a “good report,” I felt like I was helping circle hidden treasure on a map or something. I realized also not everyone&#8217;s excited about finding hidden treasure on a map. But I play video games and finding hidden treasure on maps is, like, a thing.</p>\n\n\n\n<p>5:43</p>\n\n\n\n<p>A third really great way to contribute like this is that you can join any community meeting to learn more about what&#8217;s happening now and in the future, or just to see what makes WordPress work. As a heads up, these meetings go really fast. And they&#8217;re all in text. And there&#8217;s sometimes, but not all the time, a little bit of jargon that you have to head to your favorite search engine to find. But I sit in on about half of them myself and get a lot of really good information about things that I&#8217;ve been wondering about, things that looked broken, but actually are functioning exactly the way that they should. And I just didn&#8217;t want them to function that way. And more often than not, I found out that something that I thought was broken, was already identified and being fixed. Those are three great ways to show up and help give feedback that helps make WordPress better and more functional for more people.&nbsp;</p>\n\n\n\n<p>There are also a few other ways that we see people trying to share that feedback that don&#8217;t work quite as well. And I&#8217;m going to touch on a few of them just because it&#8217;s important to know, as you&#8217;re trying to figure out how to get started with this. The first one is just tweeting your frustrations, and I get it like that&#8217;s literally what Twitter is for.</p>\n\n\n\n<p>7:03</p>\n\n\n\n<p>But also it&#8217;s hard to create a block from “I am frustrated, behold my hateful rhetoric.” Not that any of you, my dear listeners, ever tweet hateful rhetoric. Still, that is really hard for anyone to figure out what was actually wrong in that moment. Another thing that is not the most functional way to give feedback is review brigading. The Internet rewards this kind of behavior, but I have found at least for WordPress, those false positives and false negatives can be really confusing for our new users. And the third way, that&#8217;s not our best way, and probably is the least best way, is just by giving up and not telling anyone what broke for you.</p>\n\n\n\n<p>7:45</p>\n\n\n\n<p>I know that I already said it&#8217;s not possible to fix everyone&#8217;s problems. But while it&#8217;s not possible to fix everyone&#8217;s problems the moment they get shared, it&#8217;s also truly impossible to fix any problems that no one knows exist. And so giving up and not sharing an issue so that we can identify it as part of a pattern of problems is probably the least effective way to help us help you get your problem solved.</p>\n\n\n\n<p>8:13</p>\n\n\n\n<p>This brings me back to the question of the value of WordPress users as co creators in the development process. As WordPress grows, both in usage as a CMS and in participation as a community, it&#8217;s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS. It&#8217;s also important for us to constantly remind ourselves that the best outcomes are the result of collaboration with the people who use WordPress the most. I know that not every type of user we have is showing up to give us feedback about where WordPress doesn&#8217;t work for them. And I would love to see more feedback that helps us to figure out where our patterns are.</p>\n\n\n\n<p>9:03</p>\n\n\n\n<p>So the bottom line is this without user feedback that has some clarity of what was expected versus what happened, the work to make a good choice involves a whole lot of guessing. So since open source software is built by the people who show up, I hope this gives you an idea of how you can show up and help improve the tool that powers your sites.</p>\n\n\n\n<p>9:32</p>\n\n\n\n<p>That brings us to today&#8217;s community highlight every episode or so I share either a great story of WordPress success or a great story of a WordPress contributor who helped some folks along the way. Today&#8217;s <a href=\"https://twitter.com/trishacodes/status/1357382647274762244\">community highlight</a> comes from @trishacodes who shared one of her early to WordPress mentors. She says “@RianRietveld was such an encouragement and helped me find the courage to speak up.” I have had myself many conversations with <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian</a>, and that rings true for me as well.&nbsp;</p>\n\n\n\n<p>10:00</p>\n\n\n\n<p>That brings us to the moment you&#8217;ve all been waiting for, the small list of big things. It&#8217;s actually kind of a medium list. Today, I&#8217;ve got four whole things to share with you all. The first thing on my list is that WordCamp Europe is coming, that will be June 7th through the 10th. It&#8217;s a multi-day online event. I will share in the show notes a link to the main website; there you can get an idea of what will happen, the schedule, and get your hands on some tickets so that you can get it in your calendar and prepare yourselves.&nbsp;</p>\n\n\n\n<p>The second thing I want to share is for all of our polyglots out there. The French team is planning a translation day coming up on April 30. I will share a link to that as well so that you can get an idea of what that takes if you&#8217;re feeling like you want to do some translation work. The third thing I want to share is that the Indian community in Pune actually started a new meetup series. It is a translation work along self-study &#8211; also for all of our polyglots out there. I would love to see as many people as are interested in both learning about how to do translations and certainly translating WordPress get registered for that. A final thing I want to share with you all is that if you are curious about what full site editing features will be included in the 5.8 release, that&#8217;s the WordPress release that&#8217;s coming out in the middle of July, you can check out my recap and recording of the demo that was held with Matt, Matias, and the rest of the team. There’s are also a number of other posts of next step ideas that I will share in the show notes as well.</p>\n\n\n\n<p>11:51</p>\n\n\n\n<p>That, my friends, is your small list of big things. Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</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, 26 Apr 2021 15:24: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: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:\"\";}}}}}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:106:\"WPTavern: Companies Running Competitive Ads Against WordPress May Soon be Banned from Sponsoring WordCamps\";s:7:\"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=115353\";s:7:\"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:257:\"https://wptavern.com/companies-running-competitive-ads-against-wordpress-may-soon-be-banned-from-sponsoring-wordcamps?utm_source=rss&utm_medium=rss&utm_campaign=companies-running-competitive-ads-against-wordpress-may-soon-be-banned-from-sponsoring-wordcamps\";s: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:4644:\"<p>The WordPress Community Team is <a href=\"https://make.wordpress.org/community/2021/04/19/discussion-companies-who-run-competitive-ads-against-wordpress-and-apply-to-sponsor-wordcamps/\">discussing</a> banning companies from sponsoring WordCamps if they advertise competitively against WordPress. A WordCamp organizing team recently brought the concern to community deputies regarding a potential sponsor that is advertising its product in such a way that it puts WordPress in &ldquo;an unflattering light.&rdquo;</p>\n\n\n\n<p>This particular instance is prompting community leadership to clarify expectations for how sponsors advertise WordPress derivative products &ndash; products built on top of WordPress, such as themes, plugins, or distributions.</p>\n\n\n\n<p>Cami Kaos published a list of the existing expectations for sponsors and those who want to participate in the community&rsquo;s events program. These include items such as no discrimination, no incitement of violence, respecting the WordPress trademark and licensing, and others from the <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/fundraising/local-wordcamp-sponsorship/\">WordCamp Organizer Handbook</a>. Kaos posed the following two questions to the community:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Should the WordCamp and&nbsp;meetup&nbsp;programs accept sponsors, speakers and organizers who engage in&nbsp;competitive marketing against WordPress?</strong></p><p><strong>How should competitive advertising be defined in the WordPress space?</strong></p></blockquote>\n\n\n\n<p>The discussion post did not specify the potential sponsor in question but <a href=\"https://wptavern.com/elementor-raises-eyebrows-with-google-ads-targeting-full-site-editing\">recent campaigns from Elementor</a> meet the criteria of advertising against WordPress with a negative slant. The ads insinuate that WordPress isn&rsquo;t user -friendly or intuitive and that without this particular product WordPress is frustrating. The company has also run ads that co-opt the term &ldquo;full-site editing&rdquo; on Google searches, with Elementor representatives claiming that it is a generic industry term.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Elementor has sponsored events in the past. If the community guidelines are changed to explicitly prohibit advertising that puts WordPress in a negative light, then the company may be required to pull all of its ads that violate the new requirements in order to become a sponsor. </p>\n\n\n\n<p>Bluehost is another company that might come under the microscope for its <a href=\"https://wptavern.com/bluehost-misuses-wordpress-trademark-reigniting-controversy-over-recommended-hosts-page\">recent trademark misuse</a>. Although the company had a meeting to resolve matters with WordPress&rsquo; executive director Josepha Haden, Bluehost still has <a href=\"https://www.youtube.com/channel/UCURv2b4zbEiwN626-T321HQ\">multiple ads</a> running with the <a href=\"https://youtu.be/eqQORI5Ehd0?t=15\">same issue</a>. </p>\n\n\n\n<p>Feedback so far has been minimal. One participant in the discussion mistakenly thought the proposal was referring to competition in general. Andrea Middleton clarified in the comments.</p>\n\n\n\n<p>&ldquo;The question is whether WordPress events should co-promote or endorse people and companies that are competing&nbsp;<strong>against WordPress itself</strong>,&rdquo; Middleton said.</p>\n\n\n\n<p>&ldquo;For example, if someone is running ads saying &lsquo;WordPress is terrible, use our product instead,&rsquo; or even &lsquo;WordPress is terrible, but our&nbsp;plugin&nbsp;makes it good&rsquo; do we want to include them as a sponsor for WordPress events?&rdquo;</p>\n\n\n\n<p>Defining competitive advertising to exclude all forms criticism may be too strong of a line but there should be guidelines that cover more egregious cases where a company is disparaging WordPress for the purpose of exploiting its community. </p>\n\n\n\n<p>&ldquo;Criticism can be healthy and good marketing when done in good faith and with a tool that truly addresses a user need,&rdquo; Mark Root-Wiley said. &ldquo;What makes criticism objectionable is when it strays past details of software and into harmful criticism of people and communities, and it seems like the existing standards cover that.&rdquo;</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/community/2021/04/19/discussion-companies-who-run-competitive-ads-against-wordpress-and-apply-to-sponsor-wordcamps/\">discussion</a> will be open until April 29, 2021, when comments will be closed and the discussion will move to final review. </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, 23 Apr 2021 22:01: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: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:78:\"WPTavern: Plausible Analytics Adds Statistics Dashboard to the WordPress Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115526\";s:7:\"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:201:\"https://wptavern.com/plausible-analytics-adds-statistics-dashboard-to-the-wordpress-admin?utm_source=rss&utm_medium=rss&utm_campaign=plausible-analytics-adds-statistics-dashboard-to-the-wordpress-admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5460:\"<p class=\"has-drop-cap\">Earlier this week, <a href=\"https://plausible.io/\">Plausible Analytics</a> released version 1.2 of its <a href=\"https://wordpress.org/plugins/plausible-analytics/\">WordPress plugin</a>. The update includes a missing feature that should make it more appealing to end-users. The plugin now supports an &ldquo;embedded mode&rdquo; that displays a site&rsquo;s stats directly in the WordPress admin interface.</p>\n\n\n\n<p>Without counting the self-hosted users of its open-source project, Plausible Analytics recently surpassed 14,000 users on its hosted service. That is a step forward in its two-year path toward making a dent in the analytics market.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve taken 1.4 billion pageviews directly from Google Analytics to date,&rdquo; said Plausible&rsquo;s co-founder Marko Saric&rdquo;. We&rsquo;re about to reach 3,000 paying subscribers by the end of the week.&rdquo;</p>\n\n\n\n<p>It is an exciting moment for the small, EU-based team. However, the work does not stop there. The plugin has gained 500 active installs after its recent launch. It is a small number, but Saric seems happy that the plugin is simply showing up in the directory when people search for &ldquo;web analytics&rdquo; at this point, hoping that it will bring more WordPress users around to a privacy-first solution.</p>\n\n\n\n<p>It is a slow burn and organic growth. However, WordPress users are stepping up and filing tickets through the plugin&rsquo;s <a href=\"https://github.com/plausible/wordpress/issues\">GitHub repository</a> now. Activity and feedback are the lifeblood of young products, giving developers goals to reach toward.</p>\n\n\n\n<p>The latest version of the Plausible Analytics plugin gives users access to their stats dashboard from the WordPress admin. Hooking it up is as simple as generating a shared link via the service&rsquo;s website.</p>\n\n\n\n<img />Generating a shared link from the Plausible Analytics site.\n\n\n\n<p>Earlier versions of the plugin did not include this functionality because the team was still building their public API, a necessary feature for sharing the data outside of their system.</p>\n\n\n\n<p>The new stats API is not just for the plugin. Developers can build on top of the system, retrieve stats, and present them however they want. <a href=\"https://dailytics.com/\">Dailytics</a>, a third-party service, already integrates with it and sends out daily analytics emails.  The team has <a href=\"https://plausible.io/docs/stats-api\">detailed documentation</a> on using it.</p>\n\n\n\n<img />Realtime stats embedded into the WordPress admin.\n\n\n\n<p>The latest version of the self-hosted Plausible script is available too. It features all of the same capabilities. However, the WordPress plugin does not yet support embedded mode for analytics just yet.</p>\n\n\n\n<p>&ldquo;The development of the WordPress plugin started before this self-hosted release was completed, so WP dashboard for self-hosters is not part of the 1.2 plugin release, unfortunately,&rdquo; said Saric. &ldquo;I&rsquo;ve now spoken with Mehul Gohil, who is the WordPress developer that has helped us with the plugin, and we will try to do a mini-release of the plugin in the upcoming days to allow the self-hosters to get their stats within the WordPress interface too.&rdquo;</p>\n\n\n\n<h2>Version 1.3 and Beyond</h2>\n\n\n\n<p class=\"has-drop-cap\">Saric said his team already has a roadmap for the next version of the plugin. Several new features should land in version 1.3, such as excluding authors and editors being counted in the stats. This option exists for administrators at the moment.</p>\n\n\n\n<p>&ldquo;The second one is a widget that gives a quick overview of the most import metrics such as unique visitors and pageviews, so you don&rsquo;t need to go into the analytics section if you don&rsquo;t want to,&rdquo; he said.</p>\n\n\n\n<p>The team is also looking at out-of-the-box integration with some popular third-party plugins to support event tracking. At the moment, this is primarily a developer-friendly feature because it requires a bit of JavaScript to track signups and conversions. Making it work by default is the goal.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve already done some work to make it easier, such as the recent introduction of the ability to group pages,&rdquo; said Saric. &ldquo;For instance, you can now group WooCommerce checkout pages for your eCommerce, so now we just need to enable that out of the box in the plugin.&rdquo;</p>\n\n\n\n<p>They are shooting for a self-hosted or proxied version of their script from the plugin in the long term. This would allow users to run the script from their domain directly as a first-party connection, providing more accurate data. This is a manual process right now, but the team wants the process to be easy for those users going down the self-hosted path.</p>\n\n\n\n<p>&ldquo;Obviously, in addition to the WordPress-specific improvements, we&rsquo;re constantly working on improving Plausible Analytics itself,&rdquo; said Saric. &ldquo;WordPress users automatically get all of those into their dashboard as we improve and update the main site. No need to wait for WordPress plugin updates for those to make it into the WordPress dashboard. One metric we&rsquo;re hoping to release over the upcoming weeks is the inclusion of states and city data in addition to the countries that we have now. Many of our users have asked for this, so we&rsquo;re prioritizing it in our development.&rdquo;</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, 23 Apr 2021 15:49:57 +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:\"Justin Tadlock\";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:81:\"WPTavern: With Some Hits and Misses, the Guten Blog WordPress Theme Has Potential\";s:7:\"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=115543\";s:7:\"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:205:\"https://wptavern.com/with-some-hits-and-misses-the-guten-blog-wordpress-theme-has-potential?utm_source=rss&utm_medium=rss&utm_campaign=with-some-hits-and-misses-the-guten-blog-wordpress-theme-has-potential\";s: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:5677:\"<p class=\"has-drop-cap\">Any time I see a new block-ready WordPress theme, I am like a toddler in a toyshop. I cannot wait to bring it home, rip off the packaging, and play with it. Sometimes it is the type of fun that will create lasting, years-long memories. Other times, the toy is not all it is cracked up to be. It does not deliver on the promises on its packaging. It is too hard to play with or just not what you expected. You discard it and move on to one of your other trusted toys, ones with guaranteed fun built-in.</p>\n\n\n\n<p>The latter feeling is where I am at with <a href=\"https://wordpress.org/themes/guten-blog/\">Guten Blog</a> by Avid Themes. I want to love it. It has many elements that could make for a great theme. At first glance, I even believed it could be one of only a handful of quality, block-supported themes in the directory.</p>\n\n\n\n<img />Guten Blog default demo homepage.\n\n\n\n<p>However, I was that kid all over again, let down by the shiny veneer of colorful packaging. The upside is that there is potential. It has all the elements needed to be among the great blogging themes. With more work, it could go from mediocre to top-10 material.</p>\n\n\n\n<p>The most disappointing thing about the theme is the following homepage section:</p>\n\n\n\n<img />Common three-box design pattern.\n\n\n\n<p>It is a typical design on the web today &mdash; a section containing some intro text with three boxes. I do not dislike the design. The problem is how it is handled by the theme. It relies exclusively on the <a href=\"https://wordpress.org/plugins/gutentor/\">Gutentor plugin</a> to build this, and there are zero reasons to do so. The block editor is capable of handling this on its own.</p>\n\n\n\n<p>This would have been an easy win for the theme to package this section design as a custom block pattern.</p>\n\n\n\n<p>For some blocks, I get it; WordPress&rsquo;s built-in blocks do not cut it yet. For example, the various post-related blocks do not exist yet. Of course, the Query block is slated to land in WordPress 5.8. That would be an opportune moment to make the switch.</p>\n\n\n\n<p>However, the above section is representative of all the imported demo content. Everything from columns to quotes to paragraphs &mdash; yes, paragraphs &mdash; is built with Gutentor&rsquo;s blocks.</p>\n\n\n\n<p>One of my primary fears with theme developers is that they will continue to over-rely on plugins for basic features that exist in WordPress. This teaches end-users to also rely on these plugins, and it is a shame. This creates less flexibility for users, tying basic content to a third-party tool.</p>\n\n\n\n<p>There are some stunning <a href=\"https://avidthemes.com/preview/?product_id=gutenblog-free-1\">pre-made demos</a> that users can import. In total, the theme offers 18 options. Seven of those are available for free. The other demos are part of the <a href=\"https://avidthemes.com/guten-blog-pro/\">&ldquo;pro&rdquo; package</a>, ranging from $49.99 to $79.99 depending on the number of sites the customer wants support and updates.</p>\n\n\n\n<img />Pre-made, importable demos.\n\n\n\n<p>In particular, I am a fan of its third free option for lifestyle-type blogs:</p>\n\n\n\n<img />Lifestyle-type free, importable demo.\n\n\n\n<p>The importable demos are the bright spot of the theme, most of which showcase various homepage options. The development team simply bypassed the tools available in core WordPress. There are no block styles or patterns, and the demos offer a plethora of opportunities to flesh out custom designs for users to insert with one click.</p>\n\n\n\n<p>The theme technically works without extra plugins. It is billed as a blogging theme, so the hope is that it holds up in that regard. With a content size between 730 &ndash; 800 pixels and text of 16 pixels, it does not. The text is practically unreadable when it comes to long-form content. It may as well be a jumbled mass of words where you continually lose your place from line to line.</p>\n\n\n\n<p>This is not <em>Justin-is-having-a-bad-day-so-let&rsquo;s-dump-on-a-theme</em>. I genuinely love the potential Guten Blog has. I want it to be better. The overall design is something I could imagine myself using on various websites I am involved with. Its font choices, minimalist layout, and generous use of whitespace are right up my alley.</p>\n\n\n\n<p>However, it has some issues. For example, it updates a database option for a third-party plugin on every page load (I am not sure how that made it through the review process). It also missed a lot of opportunities to showcase the core block editor.</p>\n\n\n\n<p>Other issues are with the theme&rsquo;s primary admin notice. The small text that reads &ldquo;Clicking on get started will activate Advanced Import&rdquo; felt shady. Literally, the text was intentionally styled with a 10-pixel font size, which was incredibly difficult to read, so tough that I did not catch it until I unwittingly began installing a third-party plugin. It also installed Gutenblog Demo Import and the Gutentor plugin without authorization at that moment.</p>\n\n\n\n<p>These are fixable issues. I hope the theme development team can take my complaints and build something that eventually exceeds my expectations. The potential is there.</p>\n\n\n\n<p><strong>Update (April 26):</strong> I did not notice during the initial review, but I have since confirmed that this theme changed my site title to &ldquo;WP GutenBlog&rdquo; at some point in the process, likely during the demo import.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><strong>Disclosure:</strong> This theme makes use of a library I built for breadcrumbs. It is using a version that is at least three years out of date.</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, 22 Apr 2021 23:12:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:113:\"WPTavern: Google Delays Page Experience Ranking Signal Rollout until June 2021, Adds New Report to Search Console\";s:7:\"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=115367\";s:7:\"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:269:\"https://wptavern.com/google-delays-page-experience-ranking-signal-rollout-until-june-2021-adds-new-report-to-search-console?utm_source=rss&utm_medium=rss&utm_campaign=google-delays-page-experience-ranking-signal-rollout-until-june-2021-adds-new-report-to-search-console\";s: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:2764:\"<p>Google <a href=\"https://developers.google.com/search/blog/2021/04/more-details-page-experience\">announced</a> this week that it will be delaying the rollout of the new page experience ranking signal to mid-June 2021. Page experience will be included along with existing search signals like&nbsp;mobile-friendliness,&nbsp;safe-browsing,&nbsp;HTTPS-security, and&nbsp;intrusive interstitial guidelines. The rollout, previously planned to begin in May, will be gradual and page experience will not be in full force as a ranking signal until August.</p>\n\n\n\n<p>In the meantime, Google has been elaborating on <a href=\"https://support.google.com/webmasters/answer/10218333\">how page experience is evaluated</a> and has published an <a href=\"https://support.google.com/webmasters/thread/86521401\">FAQ</a> page with common questions they have been answering:</p>\n\n\n\n<ul><li>If I built AMP pages, do they meet the recommended thresholds?</li><li>Can a site meet the recommended thresholds without using AMP?</li><li>Is there a difference between desktop and mobile ranking?</li></ul>\n\n\n\n<p>Google also announced a new&nbsp;<a href=\"https://support.google.com/webmasters/answer/10218333\">Page Experience report</a> in the Search Console that displays the percentage of URLs with good page experience and search impressions over time. Currently, page experience only applies to mobile search. Good URLs refers to the percentage of mobile URLs with both&nbsp;Good&nbsp;status in Core Web Vitals and no mobile usability issues according to the Mobile Usability report.</p>\n\n\n\n<img />\n\n\n\n<p>Google News will also be getting some important AMP-related updates during the rollout, with the removal of the AMP badge icon and the inclusion of non-AMP content in the mobile apps:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>As part of the page experience update, we&rsquo;re expanding the usage of non-AMP content to power the core experience on&nbsp;<a href=\"https://news.google.com/\">news.google.com</a>&nbsp;and in the Google News mobile apps.</p><p>Additionally, we will no longer show the AMP badge icon to indicate AMP content. You can expect this change to come to our products as the page experience update begins to roll out in mid-June.</p></blockquote>\n\n\n\n<p>Non-AMP pages will also be eligible to appear in the Top Stories carousel as another planned part of this update.</p>\n\n\n\n<p>Google Search has been updated to include support for signed exchanges (SXG) on all pages, previously only available on AMP-generated pages. This allows for pre-fetching resources, such as HTML, JavaScript, CSS, images, or font, in order to render pages faster. <a href=\"https://web.dev/signed-exchanges/#tooling\">Web.dev</a> has a guide and tools for monitoring and debugging SXG.</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, 22 Apr 2021 14:26:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:96:\"WPTavern: Themes Set Up for a Paradigm Shift, WordPress 5.8 Will Unleash Tools To Make It Happen\";s:7:\"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=115466\";s:7:\"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:235:\"https://wptavern.com/themes-set-up-for-a-paradigm-shift-wordpress-5-8-will-unleash-tools-to-make-it-happen?utm_source=rss&utm_medium=rss&utm_campaign=themes-set-up-for-a-paradigm-shift-wordpress-5-8-will-unleash-tools-to-make-it-happen\";s: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:9813:\"<p class=\"has-drop-cap\">For much of WordPress&rsquo;s history, the foundational elements of building a theme have been slow to change. Every so often, developers would get a new feature, such as child themes, featured images, nav menus, and template parts. Each of these was epic in its own way. However, theme authors had ample time to adapt to these single feature introductions.</p>\n\n\n\n<p>When the block editor landed, it did so with a bang. Love it or hate it, it shifted how we think about design for the web. It was not one of those one-off enhancements, regardless of how many times we were told it would &ldquo;just work&rdquo; with any theme. It sometimes does not <em>technically</em> break things. Support and integration are necessary for an ideal user experience, and theme authors have been slow to catch up.</p>\n\n\n\n<p>With WordPress 5.8, theme authors are gearing up for another paradigm-shifting set of changes. Josepha Haden Chomphosy, WordPress Executive Director, announced last week that several Full Site Editing (FSE) sub-components will begin <a href=\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8\">shipping with the next release</a>.</p>\n\n\n\n<p>In the <a href=\"https://wptavern.com/podcast/2-anne-mccarthy-on-how-full-site-editing-will-impact-wordpress\">latest episode</a> of the WP Tavern Jukebox podcast, Nathan Wrigley hosted guest Anne McCarthy. He asked her to calm people&rsquo;s fears over upcoming changes. &ldquo;So, as an example, let&rsquo;s imagine that we&rsquo;re a theme developer. We may be getting concerned that themes are going to become a thing of the past, that the livelihood that we&rsquo;ve created for ourselves is going to disappear before our eyes.&rdquo;</p>\n\n\n\n<p>It is a common question. Since the inception of Gutenberg, particularly its features that fall under FSE, themers have wondered if there would be a place at the table for them. If WordPress is moving toward a grander page-building experience, where do themes fit in? If users can change the layout or manipulate all of the styles, what is the theme&rsquo;s job?</p>\n\n\n\n<p>These questions are finally getting some answers. We can see the real-world changes introduced in recent months. They paint a much clearer picture, defining the role of themes in WordPress&rsquo;s future.</p>\n\n\n\n<p>&ldquo;And for theme authors, themes are going to be so important in a full site editing world,&rdquo; said McCarthy. &ldquo;And one of the things I am so excited about is that there&rsquo;s going to be a ton of what they&rsquo;re calling&hellip;the idea of these hybrid universal themes that can work with, for example, template editing.&rdquo;</p>\n\n\n\n<p>She is referring to a <a href=\"https://github.com/WordPress/gutenberg/issues/29024\">recent discussion</a> that <a href=\"https://github.com/WordPress/gutenberg/issues/29024#issuecomment-792796711\">makes some distinctions</a> between universal and hybrid themes. Essentially, universal themes would work in both a classic or block editor context, depending on what the user chose. A hybrid might support parts of the block experience but have a path to becoming a universal theme that fully caters to any user down the road.</p>\n\n\n\n<p>While this does not wholly address theme authors&rsquo; concerns, these are the building blocks that Gutenberg contributors are thinking about. First and foremost, they want a solid user experience. However, the discussions show that they also recognize that theme developers need to opt into new things at their own pace, supporting features as they understand them and learn how to implement them. This provides a path forward for traditional themes to transition into the new era and be built from scratch with new tools.</p>\n\n\n\n<p>Themes may well be more vital to WordPress&rsquo;s future than they were in the past.</p>\n\n\n\n<h2>New Tools Coming in WordPress 5.8</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">The site editor and global styles features are not planned to ship with WordPress 5.8. However, the upcoming release is set to introduce some powerful tools for theme authors. This will be a pivotal moment for theme development companies that want to make their mark in the space. The right team with a forward-looking mindset stands to disrupt the market and make millions. And, there is room for the authors who just want to build cool stuff.</p>\n\n\n\n<p>It all starts with the new template-related blocks that should be enabled in the next major update. In particular, the Query block provides an alternative to what was formerly only possible via code and carefully constructed theme options. Coupling it with existing features opens us to a world of possibilities.</p>\n\n\n\n<p>For example, I chose a theme from the most popular list on WordPress.org that looked to have one of the most complex query and loop setups of the bunch. The following is the homepage of <a href=\"https://wordpress.org/themes/enternews/\">EnterNews</a>:</p>\n\n\n\n<img />EnterNews WordPress theme homepage.\n\n\n\n<p>Anyone familiar with theme development can tell you that it would take at least eight different queries to create that homepage design without looking at the code. The only way to build that and allow users to customize which posts appear is through a series of theme options (probably category-based dropdown select boxes).</p>\n\n\n\n<p>If the Query block ships with WordPress 5.8 as expected and is also enabled for any theme, this layout is suddenly possible directly from the block editor &mdash; <em>no site editor necessary</em>. Via block patterns, users can insert these &ldquo;sections&rdquo; of different Query blocks in their page and reorder them. However, it requires buy-in from the theme author.</p>\n\n\n\n<p>As I said earlier, theme authors have been slow to adopt block-related features as a whole. Undoubtedly, the system for the EnterNews homepage is already getting the job done. And, if it works for the theme&rsquo;s current user base, there may seem to be little incentive to change.</p>\n\n\n\n<p>However, there are real benefits from a development angle to transitioning to a new system. The most obvious is that it requires little code compared to the PHP needed for building customizer options. Block patterns are little more than HTML with bits and pieces of JSON configuration in the mix. Developers can literally build them from the editor and copy/paste the code part.</p>\n\n\n\n<p>By writing less code, it lowers the potential for security issues and other bugs. Theme authors can also be less rigid in their design, allowing users to move pieces of the layout around.</p>\n\n\n\n<p>The Query block is not the only one slated for inclusion in 5.8 outside of a block-based theme context. The Navigation, Site Title, Site Logo, and more are ready to ship. Most such blocks are vital components for building an entire page. Theme authors could start handing over the tools for building complex landing pages on launch day this July.</p>\n\n\n\n<h2>Stepping Stones</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">Not every theme author needs to step up and attempt to revolutionize the theme space &mdash; though I am looking forward to those who do. Others might want to take a more measured approach. FSE is a set of many sub-components, some of which are shipping with WordPress 5.8. Many of these do not require developers to opt into them. They will &ldquo;just work.&rdquo; <em>Sort of. Mostly.</em></p>\n\n\n\n<p>Users will be able to switch to a template-editing mode directly from the block editor. From there, they can create entire page templates of their choosing. Theme authors can either stand in their way by not styling for blocks or make the experience more enjoyable.</p>\n\n\n\n<p>The widgets screen and customizer will allow end-users of traditional themes to insert blocks in any of their sidebars. Some theme authors will need to account for this in their designs. The HTML output might throw off some layouts. For those who are not ready, they should disable block-based widget support.</p>\n\n\n\n<p>The most crucial tool, however, is entirely optional for theme authors. That is the introduction of <code>theme.json</code> support. The <code>theme.json</code> file is the cornerstone of future theme development. It acts as a config file for block settings and styles, allowing theme authors to set up the defaults for anything.</p>\n\n\n\n<p>In a nutshell, theme developers can set up any of the block options from this file, and those options are automatically handled in the editor and on the front end.</p>\n\n\n\n<p>Themes can also define defaults for block options that do not yet exist in the interface. The system will automatically output these as styles, even if users cannot change them in 5.8.</p>\n\n\n\n<p>Again, this means less code work for themers in the long run. While there will likely always be a place for custom CSS, some themes could essentially be built from <code>theme.json</code> configurations. That is not possible today. However, theme authors can start taking advantage of this tool.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Themes are not going the way of the dinosaur. All of that overly complex PHP code work necessary in the past might just be. The shift is putting themes back into their proper place: design. Previously available tools such as patterns and styles coupled with the new pieces like <code>theme.json</code> and template-related blocks will be the backbone of the new system. It is all starting to come together.</p>\n\n\n\n<p>The transition will take some time, and each themer will need to decide for him or herself how much they want to take on. But, the time is near. I might even crank up the old code editor and start putting together a project myself. There has never been a better time to be excited about theme development than now.</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, 21 Apr 2021 23:32: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:14:\"Justin Tadlock\";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:69:\"WordPress.org blog: Become an Early Adopter With the Gutenberg Plugin\";s:7:\"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=10164\";s:7:\"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://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\";s: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:4168:\"<p><strong><em>Copy by Anne McCarthy (<a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a>) and Design by Mel Choyce-Dwan (<a href=\"https://profiles.wordpress.org/melchoyce/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>melchoyce</a>)</em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=632%2C354&ssl=1\" alt=\"\" class=\"wp-image-10165\" width=\"632\" height=\"354\" /></div>\n\n\n\n<p>In WordPress circles (whether it’s your local meetup, a trusted publication, or your networking group), you may have heard terms like Core Editor, Gutenberg, and the Block Editor used interchangeably over the last four years. And if you’re following contributor work on the project itself, you may also have heard some additional nuances—Gutenberg plugin, Gutenberg, or Block Editor.&nbsp;</p>\n\n\n\n<p>It can get a little confusing, so let’s take a look at four terms that will help you find your way:&nbsp;</p>\n\n\n\n<ul><li>WordPress &#8211; WordPress refers to the open source software but also to the community that surrounds it.&nbsp;</li><li>Gutenberg &#8211; Gutenberg is the code name for a multi-year project to update editing areas for the WordPress software.</li><li>Editor &#8211; The editor refers to a section of the software that allows you to update content on your site’s posts and pages.&nbsp;</li><li>Gutenberg Plugin &#8211; The Gutenberg plugin is where early work to update the editor is shared.</li></ul>\n\n\n\n<h2>The Gutenberg Plugin</h2>\n\n\n\n<p>Now that we’ve cleared up the definitions, let’s talk about the plugin. When might you use it? What would you use it for? You can think of it as an early access program or a “WordPress lab.” The plugin is updated every two weeks, which means that bugs that have been reported are often fixed and that what you see changes rapidly.&nbsp;</p>\n\n\n\n<p>The Gutenberg plugin also contains features that aren’t yet ready for their WordPress debut but are ready for curious users to test and provide feedback. This is a common practice that allows stable features to make it to your site in WordPress releases while allowing experimental features to be tested and refined. To get a sense of whether using the Gutenberg Plugin might be something you want to explore to get access to earlier features, check out the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">“What’s New” release posts </a>and the <a href=\"https://make.wordpress.org/core/tag/core-editor-improvement/\">Core Editor Improvement post series</a>. </p>\n\n\n\n<h2>Do I Need the Plugin to Use Gutenberg?</h2>\n\n\n\n<p>It depends on your comfort level! Generally speaking, it is not recommended to use the plugin on a site that has launched and is actively in use unless you’re very comfortable with the code side of WordPress. Fortunately, each WordPress release comes ready to go with <a href=\"https://developer.wordpress.org/block-editor/handbook/versions-in-wordpress/\">multiple versions of the Gutenberg plugin</a>.&nbsp;</p>\n\n\n\n<p>But if you are a keen beta tester who loves reporting feedback, or you feel comfortable navigating how to opt-in/out of the experimental aspects of the plugin, here are a few reasons you might want to dig into what the Gutenberg Plugin has to offer:</p>\n\n\n\n<ul><li>Test new features and give helpful feedback. For example, you can use the plugin to <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/how-to-test-fse/\">help test Full Site Editing</a>.&nbsp;</li><li>Get early access to the latest &amp; greatest while navigating when to opt-in or out of experimental features.&nbsp;</li><li>Prepare for the future whether you’re a theme author, plugin developer, agency owner, etc.&nbsp;</li></ul>\n\n\n\n<p><em>Do you use the Gutenberg plugin and </em><a href=\"https://github.com/WordPress/gutenberg/issues\"><em>share feedback on GitHub</em></a><em>? Thank you! This kind of feedback is what helps ensure stability in what’s shipped in WordPress releases.&nbsp;</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Apr 2021 21:03: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: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:\"\";}}}}}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:77:\"WPTavern: #2 – Anne McCarthy on How Full Site Editing Will Impact 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:48:\"https://wptavern.com/?post_type=podcast&p=115391\";s:7:\"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:197:\"https://wptavern.com/podcast/2-anne-mccarthy-on-how-full-site-editing-will-impact-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=2-anne-mccarthy-on-how-full-site-editing-will-impact-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:68360:\"<h2 class=\"is-style-default\">About this episode.</h2>\n\n\n\n<p>So the podcast today features Anne McCarthy. Anne is Developer Relations Wrangler for Automattic. Her work is focussed on the WordPress.org space, and she is leading the Full Site Editing Outreach Program.</p>\n\n\n\n<p>Full Site Editing is an endeavour to make it easier to manage how your WordPress website works. It&rsquo;s hoped that tasks which once required a fairly technical understanding of the WordPress code, will become available to all. Creating headers and footers, deciding what information to pull from the database and where it should be displayed. These will become part of the Block Editor interface. Complexity replaced by simplicity; or at least that&rsquo;s the goal.</p>\n\n\n\n<p>This, as you might imagine, is not an easy task. Now that WordPress is pushing beyond 40% of the web, there&rsquo;s a lot to consider, and that&rsquo;s what Anne is doing. She&rsquo;s part of the team trying to work out how this might look, how it should work and when it will be ready.</p>\n\n\n\n<p>We start off with an introduction from Anne and how she became involved with WordPress and the Full Site Editing initiative in particular.</p>\n\n\n\n<p>Then the discussion moves to an explanation of what Full Site Editing hopes to achieve. Which areas of a website are intended to be made available with Full Site Editing?</p>\n\n\n\n<p>We then get into the specific details of what constraints the project faces; and there are many points to consider. Backwards compatibility, accessibility and how commercial and free plugins feed into the project roadmap.</p>\n\n\n\n<p>Towards the end of the podcast we get into the process of how Full Site Editing is moving forwards, who is making the decisions and how the WordPress community can get involved in shaping WordPress&rsquo; future through endeavours like Anne&rsquo;s Outreach Program.</p>\n\n\n\n<p>It&rsquo;s a very timely episode. Many of the areas discussed will be landing in WordPress soon.</p>\n\n\n\n<p>If any of the points raised here resonate with you, be sure to leave a comment below.</p>\n\n\n\n<h2 class=\"is-style-default\">Useful links.</h2>\n\n\n\n<p>Full Site Editing is moving fast. Since the recording of this episode, there&rsquo;s been some movement. To get the latest information and learn more, see the following links:</p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\" target=\"_blank\">Full Site Editing Outreach Program</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=aPPzATDkHzg\" target=\"_blank\" rel=\"noreferrer noopener\">Full Site Editing for WordPress Overview</a></p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\" target=\"_blank\">Full Site Editing Go/No Go | April 14, 2021</a></p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\" target=\"_blank\">Full Site Editing Go/No Go: Next steps</a></p>\n\n\nTranscript<div><div class=\"chat-transcript\"><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:00:00]</div> <div class=\"chat-text\"><p>Welcome to the second edition of the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Our aim here is to create a podcast and transcript for people who are interested in WordPress and the WordPress community. We&rsquo;re going to create one episode each month, for the time being, but that might change in the future.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We&rsquo;d love to hear your feedback about the podcast. Perhaps there&rsquo;s a subject that you&rsquo;d like us to feature, a person who you think would make a great guest or anything else that comes to mind. We&rsquo;re very open to suggestions so long as it&rsquo;s to do with WordPress and the wider WordPress community. You can do that by going to WP Tavern dot com forward slash contact forward slash jukebox. And there you&rsquo;ll find a contact form for you to complete. Once again, WP Tavern dot com forward slash contact forward slash jukebox, and thanks in advance if you reach out.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Okay, so the podcast today features Anne McCarthy. Anne is a developer relations wrangler for Automattic. She focuses on the wordpress.org space and is leading the full site editing outreach program. Full site editing is an endeavor to make it easier to manage how your WordPress website works. It&rsquo;s hoped that tasks, which once required a fairly technical understanding of the WordPress code will become available to all. Creating headers and footers, deciding what information to pull from the database and where it should be displayed.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>These will become part of the block editor interface. Complexity replaced by simplicity, or at least that&rsquo;s the goal. This, as you might imagine, is not an easy task. Now that WordPress is pushing beyond 40% of the web, there&rsquo;s a lot to consider, and that&rsquo;s what Anne is doing. She&rsquo;s part of the team, trying to work out how this might look, how it should work and when it will be ready.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We start off with an introduction from Anne and how she became involved with WordPress and the full site editing initiative in particular. Then the discussion moves to an explanation of what full site editing hopes to achieve, which areas of a website are intended to be made available with full site editing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We then get into the specific details of what constraints the project faces, and there are many points to consider. Backwards compatibility, accessibility, and how commercial and free plugins feed into the project roadmap. Towards the end of the podcast, we get into the process of how full site editing is moving forwards, who is making the decisions and how the WordPress community can get involved in shaping WordPress&rsquo;s future through endeavors like Anne&rsquo;s outreach program.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>It&rsquo;s a very timely episode. Many of the areas discussed will be landing in WordPress soon. If any of the points raised here resonate with you, be sure to head over and find the post at wptavern dot com forward slash podcast, and leave a comment there. And so without further delay, I bring you Anne McCarthy.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>I am here with Anne McCarthy, Anne welcome to the podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:03:55]</div> <div class=\"chat-text\"><p>Thank you so much for having me.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:03:57]</div> <div class=\"chat-text\"><p>You&rsquo;re very, very welcome. Now it&rsquo;s a regular question, I often ask them at the beginning of such podcasts, but I think it&rsquo;s important that we lay the foundations of who you are and how you&rsquo;ve come to be on the podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Would you mind giving us a little bit of backstory about how it is that you came to be on this podcast today? What&rsquo;s your relationship with WordPress and perhaps tell us what the role is that you have currently?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:04:20]</div> <div class=\"chat-text\"><p>Great question. It&rsquo;s hard to succinctly sum up who I am, but I&rsquo;ll give it a try. I first got started with WordPress in 2011 as a freshmen in college, and I was using blogger for many years before that to get out all my feelings on the internet as a millennial does.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And eventually, it turned into three years working at the university and their ITS department, which led me eventually to finding out about Automattic. In 2014, I joined them as a happiness engineer and very recently, almost exactly a year ago, switched into a developer relations wrangler role focused on the wordpress dot org community. And currently part of why I&rsquo;m here today is cause I&rsquo;m spearheading the full site outreach program. So I&rsquo;m here to talk about that and talk about full site editing and all the fun stuff that&rsquo;s happening. Cause I know it&rsquo;s a lot to keep up with.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:05:08]</div> <div class=\"chat-text\"><p>Yeah, there is a lot to keep up with, but it is a really interesting episode.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>There&rsquo;s an awful lot to say when we&rsquo;re recording this, in the month of April 2021, this episode will probably air shortly after we record it, and there&rsquo;s an awful lot that has been going on, but there&rsquo;s an awful lot to happen during the course of the rest of this year. And we know that there&rsquo;s a lot of change coming.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>First of all, just rewinding the clock. Would you just like to try and sum up what the ultimate ambition of the full site editing project is? I know that there may be things about that roadmap which change things you wish had been included that probably won&rsquo;t get included, but just sum it up. What is the full intention of the project?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:05:48]</div> <div class=\"chat-text\"><p>That&rsquo;s a great question. I would simply say it&rsquo;s to empower users more and bring WordPress to the future. There&rsquo;s a reason these projects are taking so long. It really is about planting seeds for decades to come. And it&rsquo;s something that Matt, the co-founder I really admire in him as he thinks about those decades.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And so this is a part of that push into using blocks as a paradigm into empowering users, more and bringing WordPress to the future.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:06:10]</div> <div class=\"chat-text\"><p>Okay. So it&rsquo;s all about creating websites with blocks. What kind of areas is it getting into? What is it going to empower us to do? What things in the future will we be able to do inside the block editor?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:06:24]</div> <div class=\"chat-text\"><p>Yeah, so everything you can edit any part of a global style on your site. So if you want to have every font color, be one thing, you can quickly change it. Even by block, you&rsquo;ll be able to change things by block, which is really exciting to have a global point of view of your site, and to be able to actually customize it to your liking unlocks things.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>There was recently a test that we did around, the 404 page. Normally that&rsquo;s something that a theme author decides. And you&rsquo;re locked into it, and if you want to change it, you have to go digging through the code. With full site editing, you can actually go straight ahead and customize it to your liking, make it real fun, make it really clever and make it really serious.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Like you can do whatever you want with that. So a lot of template editing that normally you wouldn&rsquo;t have access to. So even editing, like if you land on your blog page, you can actually adjust how that looks, what shows up, what doesn&rsquo;t, in a really powerful way. I try and talk about the tangible aspects of it, but there&rsquo;s also a lot underneath the hood.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So there&rsquo;s a lot of design tools for theme authors as well. That there&rsquo;ll be able to hook into that ideally will make it much easier to create themes and to focus more on the aesthetics and the experience rather than on coding up the basics. So there&rsquo;s a lot that I think across the board, whether you&rsquo;re a user or a theme developer or a plugin author, there&rsquo;s a lot to be excited about in the future.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:07:34]</div> <div class=\"chat-text\"><p>One of the things that keeps coming on my radar is the comparison between what we&rsquo;ll call page builders, these plugins, or perhaps it&rsquo;s a theme we&rsquo;ve seen lots of commercial and free products available in the WordPress community, which enables you to achieve many of the goals that the full site editing hopes to achieve. So templates for this templates for that. Headers, footers, you can have global color palettes and all of the things, and it can be done within their interface. I guess the thing about those products is they are created by a team of developers and they are released presumably when they&rsquo;re mature and they&rsquo;re ready to go and the company believe that it&rsquo;s now suitable and people will purchase it or use it and deploy it. Now you&rsquo;ve got a very different set of constraints that you have to work within. And I think highlighting what those constraints are, would be really useful to give people some context as to why it isn&rsquo;t where some of these other solutions might be, because you&rsquo;ve got many, many things to be thinking about in the background. So if we just get into that, maybe one thing at a time, do you want to just rattle off a list of things that you&rsquo;ve got to be concerned about that perhaps we didn&rsquo;t know you needed to be concerned about.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:08:48]</div> <div class=\"chat-text\"><p>Yeah. I&rsquo;ll start with the most obvious ones, which is we&rsquo;re building things so that other people can build upon it, including page builders. So I think that&rsquo;s something that often gets overlooked. Like some of our audience members are these page builders. So it&rsquo;s an interesting dynamic there because it really is about that foundational level. Anyway, 40%, the internet, just the diversity of ways that people use WordPress, whether it&rsquo;s multi-site or what have you, there&rsquo;s a lot to consider.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Then you add in internationalization, which is part of like future phase four. Accessibility is a huge issue. Something that really needs to be thought about including backwards compatibility, and that&rsquo;s another. A lot of page builders could easily say, hey, update to this version after this, x Y and Z will no longer be supported. Doing that with 40% of the internet is huge.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Just recently actually, I did some outreach because in 5.2, which is many releases ago, some smaller APIs were deprecated. We&rsquo;re finally removing them from the Gutenberg plugin. And there were still three plugin authors who were using these APIs, and I reached out to them, let them know and made sure they were aware that this was coming, but that&rsquo;s something that a page builder is not building the same APIs that are going to be used across the internet in the same way.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So there&rsquo;s a lot of just scale that I think has to be thought of, which is partly why things get pulled from releases until they&rsquo;re ready. But it&rsquo;s also why sometimes we have to include things in releases in order to get feedback in order to, hear from people what needs to be improved and what we haven&rsquo;t thought of, because inherently you can&rsquo;t talk to 40% of the internet at once.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>You just can&rsquo;t. So part of that is that dance of, hey, this is coming up, hey, this is what&rsquo;s new. And seeing how 40% response. What did we miss and how can we do better next time? And the way I think of it as it&rsquo;s this nice chance with every single release of thanks for making me better. Thanks for making the web better.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And when the feedback comes in, that&rsquo;s what it is. Whereas I think page builders and site builders have a unique position where they might have a very large user base, but it&rsquo;s not going to be 40% of the internet. You know, there&rsquo;s just a huge difference there.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:10:42]</div> <div class=\"chat-text\"><p>So some of the constraints that you mentioned there were the audience size, 40% of the internet, you&rsquo;ve got to be mindful of the fact that they are going to expect things to break as little as possible.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>You&rsquo;ve got accessibility and so on. And there were probably two or three other things that you mentioned there as well. In real terms, how does this constrain the development? How do these factors slow you down? Do they have a material impact in the amount of time it takes you to do things because you have to ask for more consultation or you have to receive feedback from various people before you can get the green light to push that and move onto the next thing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:11:18]</div> <div class=\"chat-text\"><p>What you described is very, very accurate. I&rsquo;ll give a specific example. So the widgets editor, which is bringing blocks to the widgets editor. Originally, it was slated for 5.5. I&rsquo;m pretty sure. And it&rsquo;s gotten pulled from 5.5 from 5.6. Wasn&rsquo;t even considered for 5.7 and is now hopefully going to be slated for 5.8.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And a big part of this was originally, it was just going to be a separate editor, separate from the customizer and with feedback, it became very clear, customizer is a key interaction that we need to prioritize. How do we bring blocks to the customizer, which is a whole unique experience to think about.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And this is where the 40% of the internet comes into play, right? Because we understand that you&rsquo;re releasing new things, that&rsquo;ll cascade to new people. But what about the person who&rsquo;s had a site for five years? What benefits can we bring to them? Not just brand new users who are going to be using WordPress for the first time, because the majority of the users are people who have been using WordPress and who have trusted the community and the people building WordPress, with their site, with their, who knows what is their story, their business.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So there&rsquo;s a level of thought that has to go into play with that, and I think part of it is why Gutenberg, the plugin does bi-weekly releases. And I think there&rsquo;s about 300,000 active installs, which is a much smaller compared to the 40% of the internet. And it allows us to test things out, have experiments, go do outreach, like the outreach program I&rsquo;m running, get the feedback that we need, reach out to specific plugin authors. And in the case of the widgets editor, it became clear with each release, it just wasn&rsquo;t ready. It wasn&rsquo;t in the place that it needed to be. It wasn&rsquo;t as stable as it needed to be. It wasn&rsquo;t refined, it wasn&rsquo;t intuitive enough.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And in many ways, one of the things that slowed us down was wanting to have it in the customizer, which I think is a huge win. It&rsquo;s a main interaction that people are used to. It&rsquo;s something that people trust. So how can we go where people trust and extend that and provide an experience that they can also in the future trust and have actually unlock more things because when you&rsquo;re able to use blocks in the customizer, you&rsquo;re now able to add way more stuff than you would be able to and do way more things than you&rsquo;d be able to when it was just the customizer, which is pretty exciting. So it&rsquo;s both like trying to get user trust, but then also providing value at the same time and going to areas that people feel familiar with and slowly incrementally having stepping stones towards this eventual idea of full site editing, where everything is through a block paradigm, and you&rsquo;re able to extend your site, however you want.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:13:35]</div> <div class=\"chat-text\"><p>Do you ever get feedback from people who use these tools? That sort of question I&rsquo;m trying to frame is something along the lines of. How do you cope with people who wish that it were already something that their current tool can do? Take the example of a commercial page builder. There&rsquo;s several, you could pick the names of, and they&rsquo;ve got this tool and they&rsquo;re quite happy with it. And it does all of the things that they would wish to achieve. And then they come over and they look at the project that you&rsquo;re involved with, the full site editing, and they see a real difference. They see that this tool over here, which I&rsquo;m familiar with that works. I&rsquo;m very happy with it and it works and it does all these things that you are, you&rsquo;re still trying to put together. How do you bridge the gap between what their expectations are and what you&rsquo;re trying to build? Do you have conversations with people? In fact, you even download some of these commercial products and check them out and see what it is that people get excited about, about them.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:14:33]</div> <div class=\"chat-text\"><p>I definitely check them out. I actually love, love, love hearing about new plugins because I do, I actually test full siting every single day. I have been, it&rsquo;s been a challenge of mine like last couple of weeks, but I do also love when people flag things and say, hey, this new page builder or this new plugin provides a really interesting experience.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>One of the recent ones, I actually went back and checked out was the Iceberg plugin that simplifies the Gutenberg editor. And I recently checked that out again cause I was actually talking to someone in a completely different, it was a developer relations, a Slack community, and I have an alert word set up, anytime someone says, WordPress, I love doing that&rsquo;s my favorite little hack, life hack for everyone just joined a bunch of communities and then set up alert words. Yeah. He was just like, oh, man, this editor sucks. I don&rsquo;t know what to do with it. I immediately reached out to him and said, hey, no pressure. If you&rsquo;re game to talk about this, I&rsquo;d love to hear your concerns are what features are missing or what has you blocked? And I ended up sharing the Iceberg plugin with him and then went back through and tried it out again. And I bring this up because I think something to be said is that, the hope is that WordPress can provide common tools so that people, for example, aren&rsquo;t locked into one single page builder.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Like you can move around, and I get the rush to say man, I want to use the core system, but right now I&rsquo;m relying on this page builder, and we&rsquo;re frustrated with that too. There is a sense of urgency and Matias and Josepha touched on that in a WP Briefing podcast very recently that there&rsquo;s this urgency of getting features out to people now, because we know that it will benefit them.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I think that as a really exciting position to be in. I know where we&rsquo;re coming&hellip; It&rsquo;s going to come, I promise, hang in in there. Which I think is a neat space rather than this impatience or hesitancy, which I also think happens, but I do seek out feedback like that, and I do enjoy talking to people whenever they explicitly have a bad experience. And one of the best questions that I ask is, what features about this page builder do you really like, what would you want to see in the core experience. And then from there, I can be honest with them and say, oh yeah, we&rsquo;re working on that. That&rsquo;s going to be like, here are a couple of Github issues that you might be interested in that this is the design. This is whatever it is. But then on the flip side, There is also going to be a role that plugins have to play into the future. Same with the Gutenberg editor right now, and the core editor right now with Iceberg, for example, like where it simplifies the editor.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I imagine in the future with full site editing, there will be both plugins that really open up the options in the settings, and I also can imagine there&rsquo;ll be plugins that really simplify things and make it really easy for certain users to use it and people can pick and choose and customize as they&rsquo;d like, same to what we see with plugins now, anyway. And the biggest thing I often say to people whenever they talk about page builders, I&rsquo;m like, that&rsquo;s fine, if you&rsquo;re not ready to switch, that&rsquo;s totally fine. But at the end of the day, when you&rsquo;re starting with new client or you&rsquo;re starting a new site, or you&rsquo;re redoing your site at some point, you&rsquo;re going to have to learn something new, and it&rsquo;s better to learn the sure thing. Doesn&rsquo;t mean you only have to learn this your thing. I can imagine a world where people have these like hybrid experiences for some time, but the hope is that we can provide common tools so that people are not locked into one single page builder. Ideally the page builder is actually build alongside full site editing and the editor tools that we have. And then from there, people can customize to their liking either having more options show up or having less, and I do love hearing, what do you want? What&rsquo;s missing? Cause it helps sharpen our thinking, and oftentimes I hear about things that I would never think of. That&rsquo;s the beauty of having 40% of the internet is it&rsquo;s like, whoa, I never thought about that. You&rsquo;re right. That is a really interesting use case.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Like someone recently a good example with the custom 404 test, as part of the outreach program, we had people build fun, custom 404 pages and someone reached out and said, well right now, it&rsquo;d be really awesome to have different templates depending upon how the person landed on the 404, having some level of customization of what you present.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So maybe you have four different 404 templates and it cycles through them. They were like, is this possible? I would want to put a feature request in. And it was pretty easy for me to say, you know what? That probably will be done by a plugin. So, that&rsquo;s a great idea. That&rsquo;s a really interesting use case, and I do think that&rsquo;s something that&rsquo;s desired, but this is also where plugins will still play a role. And being able to tell people that, so that expectations are in line as much as possible, I think is really important. There are going to be aspects that will not be covered by the site editor and that&rsquo;s good.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:18:39]</div> <div class=\"chat-text\"><p>Commercial page builders if you like, the process which I often see is they&rsquo;ll release a statement out into their email list or what have you, and they&rsquo;ll describe the features that they have been working on that have now been released and so on. And so in many cases you don&rsquo;t really know what is happening unless you probably take great interest in their team and what have you. So I&rsquo;m curious to know what is the actual process that is going on in the background that iterates your project, the full site editing project. How did the little leaps forward get made? Who is involved? How can people get involved? How can they find out what it is that you&rsquo;re working on currently? And ways in which they can help you. And there&rsquo;s a lot in that question, so probably the first thing I&rsquo;ll just rewind a little bit and say, could we just concentrate on how the full site editing, the team that&rsquo;s behind that, how does it actually work? What is it that you do? How do you communicate with each other? How do you ensure that things are being built that people want to have in.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:19:38]</div> <div class=\"chat-text\"><p>Yeah, that&rsquo;s a great question. To start, I would say Matias is kind of, I think Josepha described him as the spark behind Gutenberg, and I really love that title, so I&rsquo;m going to use it, reuse it. He is the project architect. So imagining multiple steps ahead, thinking about where we need to go, thinking about truly the infrastructure of what&rsquo;s being built, APIs, is design tools, all that sort of stuff. And really thinking about based on many, many, many years of experience in the WordPress community, what do we know for sure that people need? And then from there, a lot of it is just this back and forth with the community, releasing stuff, doing calls for testing. The outreach program is a big part of that. So getting feedback from the outreach program, but one of the things that I recently came up that I am working on doing a better job of communicating is the outreach program is bringing in feedback, but that feedback and the high level, top feedback items are likely going to be different than what are the top issues to solve for full site editing if that makes sense. So there&rsquo;s the feedback there&rsquo;s actually using the tool, and then there are, these are the things that have to be solved and sometimes there&rsquo;s overlap where sometimes some of the feedback becomes a top issue. But not all the time. And that&rsquo;s partly because the MVPs is a work in progress.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And as those things get clear, for example, I think after April is gonna be a jam packed month, but once there&rsquo;s that decision point that go no go date, there will be a time where the full site editing outreach program can start switching into a more narrowed experience of testing. And I&rsquo;m really excited for that, where it&rsquo;s okay, here&rsquo;s the MVP. Here&rsquo;s what we&rsquo;re thinking for 5.8 which are two separate goals, by the way, there&rsquo;s like building MVP, and then there&rsquo;s, what&rsquo;s going to go in 5.8 and I think that&rsquo;s important to keep in mind as well. And yeah, one of the biggest ways that we get feedback and figure out what needs to be done next, especially now that we&rsquo;re in a more refinement period is through the outreach program is through people filing feature requests and just doing as much testing as possible. Ideally this is also where a theme authors start exploring what it&rsquo;s like to build block-based themes and give feedback on that experience. So, yeah, there&rsquo;s a lot of ways that the feature development goes on. I will say a lot of the work happens in Github and then every, probably I think, a two month cadence, there&rsquo;s some high-level posts about full site editing, whether it&rsquo;s about a specific release or just like a check-in post, or if it&rsquo;s about FSE and themes. There have been various posts over the last six months and I expect to see a lot more in the coming months leading up to 5.8 so that people are aware and they don&rsquo;t have to pay attention to the day to day with Github. Another really good post to keep an eye out on is the what&rsquo;s next post. And that&rsquo;s posted each month and kind of defines, this is what the team is working on next.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And a lot of that does come down to, what issues of have come up in testing, what issues does Matias think are high priority to solve? What else is remaining in the MVP that&rsquo;s been discovered previously? And one thing that I think is really easy to miss with full site editing, and it almost feels weird to just say. This monolithic full site editing when actually it&rsquo;s this really diverse set of projects, and each is further along than others.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So there&rsquo;s this very interesting battle that goes on in my mind, whenever I talk about full site editing, cause what I really want to do is talk about a specific piece of full site editing, but that also can get too granular in a way that can be really confusing. But it&rsquo;s something I like to mention where if you try out the experience and one part seems really good and one part you&rsquo;re like what&rsquo;s happening here, that&rsquo;s on purpose. Because at the end of the day, I don&rsquo;t expect the entire experience to go into 5.8. I expect certain things to fit in and for there to be a drip campaign, probably through even the 6.0 release, who knows, but definitely through the 5.9.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:23:02]</div> <div class=\"chat-text\"><p>Let&rsquo;s say somebody is listening to this and they&rsquo;ve got no experience contributing to any software project, and they&rsquo;re interested, they like the idea of full site editing and they&rsquo;ve got a few things they&rsquo;d like to get off their chest and they want to be of some help. What are the most effective things that can help to push the project forward right now? That could be an answer as to which website to go to, and get involved in, or it could be, well, actually, no, we need help about this specific thing right now over the next month or two, you can take that in any way you like.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:23:35]</div> <div class=\"chat-text\"><p>I mean the simplest answer that I would love to see is people joining the Core Editor meeting. If you can. If you can&rsquo;t reading the notes and starting there, which you can see them posted on make.wordpress.org backslash core, there&rsquo;s actually a tag for the Core Editor meeting. But I would start there, and I say that partially because we&rsquo;re in a pandemic. Most places in the world, you can&rsquo;t meet up in person. So getting connected with the people behind this work before you step into Github, before you step into anything else, I think is really important. There are humans doing this work. There are humans who are listening, who are caring, who are staying up late, thinking about problems. So join the meetings if you can, if you can&rsquo;t asynchronous contributions are very welcome. So if you can comment on the post with a question and have it answered, but I want to start there with the human element, especially right now. So my answer, you&rsquo;re listening to this many years in the future, hopefully we&rsquo;re beyond this, but for now I really want to connect people with other people. And then from there, start as simple as just testing, get a test site up, try things out. There&rsquo;s another make site, which is where we communicate in the project, make.wordpress.org backslash test. That&rsquo;s where I post a lot of the stuff around this outreach program. So if you just want dip your toes in, that&rsquo;s a great place to start. It walks you through, there&rsquo;s instructions on how to set up everything, what to use what to pay attention to, how to actually go through the call for testing. It&rsquo;s very purposely constrained right now, so that it makes it easy for people to jump in. But if you&rsquo;re more advanced, I would just say, start scrolling th through Github. Look at different labels. There&rsquo;s a really good label that I check regularly, the overview label. So if you want to get a sense of the top issues, or I guess the summarized issues, the overview label is my jam. I love going through that and seeing what&rsquo;s new and also just seeing the status of things. It&rsquo;s a really great way to dig into the project, but not too deeply. And if you&rsquo;re someone who&rsquo;s been around WordPress for awhile I would say starting to, try to create a block plugin or build a block based theme.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>We&rsquo;re going to need to see the community in the future, really adopt these things and starting early while things are almost refined, I think is super helpful because it helps us define them in a place that there&rsquo;s early enough for things to shift. Getting that feedback is pretty key so that we are creating tools that you can actually use, because the whole point is this is all being built, so other people can use it. Other people can&rsquo;t use it, and we don&rsquo;t know that. That&rsquo;s a problem and it&rsquo;s hugely helpful and valuable to do that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:25:48]</div> <div class=\"chat-text\"><p>You highlight the fact that you obviously need help with the things that you just described. All those technical areas. If I was to be listening to this and I am a more casual user of WordPress, I use it to create blog posts and I&rsquo;m good at writing, but I&rsquo;m not really into the code, and that side of things is of no interest to me, are there avenues that would still be open to me to assist with this?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:26:09]</div> <div class=\"chat-text\"><p>Yeah, I would actually say the testing should be pretty basic enough that you can dig into it. I&rsquo;m saying this as the person who writes the test, I purposely try to make them very contained, so anyone can jump in and if they want to spend five minutes, ten minutes, that&rsquo;s great. You don&rsquo;t need to spend hours on this. Some people do, some people really like to go deep with it, but the whole point is that it&rsquo;s something that anyone can jump into.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And even if a call for testing is passed, it&rsquo;s still great to go back through previous calls for testing and I actually have videos as part of the calls for testing so that you can see me walk through it. So if you get stuck, if you&rsquo;re reading my instructions and you&rsquo;re like, what is this person saying?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>You can watch the video and watch me go through it. And even just watching that and giving feedback and saying, hey, this is really weird, or, I really like when my page builder does this , do you all have plans for that? And another thing that&rsquo;s actually coming up that I plan to do that anyone can participate in is another big call for questions. So there was a lull in testing. I was waiting for a new Gutenberg release and a couple of months ago, I did just, anyone could ask anything about full siding and I would find the answer for it. And we ended up getting, I think it was 46, 47 questions, which was fantastic. And I grouped them into different chunks, answered them, all, publish them, pass them on to the documentation team, the marketing team, but that allowed people where if they don&rsquo;t have time to test, but they&rsquo;re nervous about it, or they&rsquo;re curious about it or they&rsquo;re excited for it, or they&rsquo;re impatient, whatever their emotional state is. Ask any question and I&rsquo;ll answer it. And I plan to do those, another round of that definitely in the future. Probably at the end of April, and if that&rsquo;s of interest paying attention to the, make.wordpress.org backslash test as the best place to pay attention or in Slack there&rsquo;s in wordpress.org Slack, there&rsquo;s a FSE hyphen outreach hyphen experiment that you can join, and you can just sit back and listen to me update you as I go, but that&rsquo;s also a great way is asking questions, sharing concerns. That is actually hugely helpful. It sets the foundation for documentation. It helps the people building it know what the points of confusion are likely to be. So yeah, if you just want to ask a question by all means that&rsquo;s a very easy pathway to jump into.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:28:10]</div> <div class=\"chat-text\"><p>Thank you. I&rsquo;ll be sure to take those links off you before we finally hang up the call today and we&rsquo;ll make sure they make it into the show notes. Do you feel that you have. Enough people giving you feedback to justify the decisions that you made. I mean obviously in any software development, the answer I guess, is going to be, well, it would be great to have more. Do you feel that there is enough people assisting you at the moment so that you can be confident in the direction that you&rsquo;re going? We&rsquo;re doing this, we&rsquo;ve got some feedback, but curious whether or not, if we have more feedback, we&rsquo;d go in a different direction or not.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:28:44]</div> <div class=\"chat-text\"><p>That&rsquo;s a great question. I am always someone who wants more people involved. I don&rsquo;t think I&rsquo;ll ever be happy with the numbers. Right now we have between 10 to 15 people with each test. And one of the things I actually recently consulted some of our design team with an Automattic, and I asked, I said, with usability testing what kind of numbers do you look for when you all did this with 5.0 what did you look for how many people? And a lot of times I got feedback saying, Oh my gosh. Anne, five to 10 people, it was great. You can calm down. It&rsquo;s fine. I&rsquo;m like, no, no, no. I need like 50, you know, it is this weird sense of no, no, I want more and more and more. And I can tell you, I don&rsquo;t think we can ever get too much feedback, especially if it&rsquo;s relevant and its&hellip; I mean, obviously there&rsquo;s like irrelevant feedback where it&rsquo;s make WordPress like Facebook. I mean, whatever, it could be something outrageous. That&rsquo;s not terribly helpful, you know? But imagine if we just got completely inundated with feedback in the outreach program, that would be amazing. My goal, my personal goal that I&rsquo;ve been trying to say outwardly in hopes it encourages people is I would love to have 20 to 25, really dedicated, diverse testers, each release and not each release each call for testing. That&rsquo;s my ideal. And the reason I mentioned engaged testers is because I want people who are along for the journey a little bit,ideally. Obviously I think it&rsquo;s great if people jump in and out, I think there&rsquo;s something to be said for really new perspectives and I love when people comment saying, hey, this is my first time using full site editing and here are my thoughts. That&rsquo;s excellent. But the idea of quality over quantity, I think is really key, for this phase of testing. I think when things actually get merged into core and certain aspects get merged into core, that&rsquo;s when things can open up and be a bit more, having 2000 people give feedback, but yeah, I don&rsquo;t think there&rsquo;s ever enough testing and honestly, I do worry about that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And it&rsquo;s something, one of the things I&rsquo;ve been very intentional about is reaching out to the accessibility team to try and get people to help give feedback so that we&rsquo;re thinking about accessibility needs and reaching out to folks in the polyglot space so that we have translations of these posts so that people can participate. I only speak English and I had been in countries where all of a sudden, you see something in English and it&rsquo;s like this it&rsquo;s like such a relief to have a menu in English. Like, Oh yes, this is so nice. And I want that outreach to happen because I think sometimes the software development I&rsquo;ve seen this like arrogance of, oh well, we&rsquo;ll just be doing the work and if they&rsquo;re curious, they can come to us. And I actually think this is one of those situations where we need to go to them. And that&rsquo;s what the outreach program is all about is meeting people where they are doing the outreach. Bringing people along with us and learning from them as we go. Part education, part feedback loop, and part, hey, here&rsquo;s a really easy way to get involved and walk you through what&rsquo;s coming.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I would love to see more engagement from folks who are non-English speaking. We&rsquo;ve had Italian, Spanish and Japanese translations very consistently. I&rsquo;m so grateful for the people who&rsquo;ve done that. I think it&rsquo;s just, oh, I&rsquo;m so bad at languages that it just amazes me. I also think everything looks better in a different language. So it&rsquo;s neat to see my own words translated, which is a kind of a wild experience that I never thought would happen, but I&rsquo;d love to see more engagement. In those polyglot and local spaces, because the last thing you want is for all of a sudden it to land and only a specific audience benefits or sees this or understands it or knows what&rsquo;s coming, right. There&rsquo;s a big responsibility for 40% of the internet. And I&rsquo;ll never forget the day that Matt at a State of the Word said that non-English downloads passed English downloads. And so when you think about that 40% I think a lot of us English speaking, Western world think of a certain type of person, but really it&rsquo;s much more expansive than that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So I&rsquo;ve been really hammering the polyglot space as much as I can, as much as volunteer time people can give to translate those posts and to try and get feedback. But it&rsquo;s something that I&rsquo;d love to see more of.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:32:22]</div> <div class=\"chat-text\"><p>I&rsquo;m curious actually, if you&rsquo;ve got a really nice concrete example of an instance where somebody&rsquo;s feedback turned into something actual. It was realized off the back of a piece of feedback, which you passed on to the team, and somebody reached out said, I would like this. And you were able to provide this, Hearing those stories. Ah, it is possible.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:32:44]</div> <div class=\"chat-text\"><p>Yeah, I can think of a really specific example that I was actually thinking about this morning when I was making coffee. A blind developer, I got connected with her through actually posting in a different Slack community. So, you would not believe how many Slack communities I&rsquo;m a part of and how much I try to drop links and engage people in different spaces. And I got connected because someone said, hey, I have a friend she&rsquo;s blind, she&rsquo;s a WordPress developer, and she cannot use full site editing. And I was like, whoa, tell me everything.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>How can I get in touch, and got in touch, her name&rsquo;s Taylor. And she very kindly jumped on for about 30 minutes. We recorded the session so that I could pass along the feedback. She just walked me through the experience of both using of using two different screenreader tools. And. It was fascinating. It was awesome.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>We found so many bugs. It was one of those things where I think the biggest, the most jarring one that I keep thinking about that I actually want to see if we can get some development in on ASAP, is that the save button, and the saving process for full site editing right now is pretty non-intuitive, it&rsquo;s a little bit clunky and it&rsquo;s something that&rsquo;s come up with sighted folks as well. What is the saving process, how does it work? But for people who rely on screen readers, it&rsquo;s really impossible to save. Like you basically have to search for the phrase save in order to find the save button because there isn&rsquo;t an aria label. And so that&rsquo;s a big one that came up and on top of that in just the session, I worked with her another piece of feedback that came up with the columns block.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So if you have columns and you&rsquo;re imagining, let&rsquo;s say two columns and you are using a screen reader, it doesn&rsquo;t tell you which column is which. So all of you here just announces column, column it doesn&rsquo;t say like column one or column two or right column or left column. There&rsquo;s no identifier for how to navigate.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And so that&rsquo;s actually, there&rsquo;s a PR right now that&rsquo;s underway. I actually just filed it for the accessibility team last week to see if someone could review and someone already stepped in to offer some thoughts to fix that, to actually announce, I think they&rsquo;re going with like column one and column two and column three rather than right and left due to internationalization. And that&rsquo;s going to be a huge improvement because right now Taylor was just like, columns block is so confusing. This is almost useless. Another one is the spacer block. I&rsquo;d love to hear. If you use a screen reader, I&rsquo;d love to hear your experiences with the spacer block, because that&rsquo;s a really confusing block for people I&rsquo;m relying on screen readers.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I opened up an issue for that, and we&rsquo;ve had some discussion back and forth about improvements that need to be made there as well. So those are some of the, and I can tell you, there&rsquo;s probably about. I think six issues I opened just from that 30 minute conversation. Some are like a work in progress, but this was very recent and something I keep thinking about, especially as we start to refine things and decision points come up because we don&rsquo;t want to release something that has such blatant problems with it.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:35:24]</div> <div class=\"chat-text\"><p>It marks a very big change for WordPress this last couple of years have been really extraordinarily different, the experience that we&rsquo;re all going through, but in particular, around full site editing How do you calm people&rsquo;s fears that things in the future are going to be going in the direction that they wish it to go in. So, as an example, let&rsquo;s imagine that we&rsquo;re a theme developer. We may be getting concerned that themes are going to become a thing of the past that the livelihood that we&rsquo;ve created for ourselves is going to disappear before our eyes. People concerned that the way that they&rsquo;re working with at the moment, the way that they&rsquo;ve taught their clients to work, this is how WordPress works, and this is how you can manage your website for yourself, and so on. What do you say to people? What is the golden light on the hill? The thing that you draw attention to, to say, look, all of this will be worth it. How do you keep people focused on the positives and not worrying about all the different things that are going on left right and center?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:36:20]</div> <div class=\"chat-text\"><p>Yeah. The biggest thing I say is there&rsquo;s a reason that the last milestone is gradual adoption. And one of the things that I also love to talk about is the fact that full site editing is a bunch of sub projects actually gives us the flexibility to ship reliable items rather than shipping it all at once.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Yes, they&rsquo;re interdependent. Yes. And some cases they rely on each other and there needs to be probably a certain order or approach to releasing things. But by having so many different tools that provide value. It actually gives us the ability to step back and say, okay, what&rsquo;s ready. And that should be a big relief to people.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>It&rsquo;s not like there&rsquo;s going to be this on-off switch full savings here is taking over your site. Good luck. That&rsquo;s not going to happen. Gradual adoption is the game plan. It is the final step. And I imagine right now, a gradual adoption as a milestone is not fleshed out. But I imagine, especially you have to 5.8, that will become a much more fleshed out milestone in the same way you see other milestones, I think, Josepha has talked a lot about this, and I really love the way she basically says we want to fulfill the WordPress promise. We want to keep that trust and we want to release things in the best state possible while at the same time, recognizing that there&rsquo;s this urgency to offer tools that people are just lacking right now, at some point, we need to get those out in front of people and to provide value and making that determination is super tricky. But the good news is like I was saying earlier, we have that flexibility built into the fact that these are all sub projects and that many of them can be shipped independently.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And for theme authors, Themes are going to be so important in a full siding world. And one of the things I am so excited about is that there&rsquo;s going to be a ton of what they&rsquo;re calling. I .. the idea of these hybrid universal themes that can work with for example, template editing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So going and being able to edit like your single page template, your homepage template, or your 404 template. You could have a theme, that&rsquo;s a classic theme or traditional theme, whatever you want to call it. And you could use template editing. You could update your theme to hook into the tools have been made to allow for template editing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Same thing goes for global styles. You could just use one part of the full site editing machine, so to speak and all the projects and slowly integrate, more and more, as you want to, like theme authors will have a lot of control of what they opt into and what they opt out of. And for us building it, it&rsquo;s on us to make it so desirable to opt in.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Right, and that&rsquo;s where the gradual adoption, so many pathways are going to be created. And I&rsquo;m actually really excited to see people move from this framework of anxiety to looking out across the space and going, hmm, what can I use? What is it that I hear from people all the time that I can integrate into this and moving into an exciting creative space rather than thinking, hh, I got to get caught up, I&rsquo;m behind. This is so bad. Like that kind of feeling, which I hear from a lot of people was like, I don&rsquo;t have time to get up to speed. And the ideal is that we&rsquo;re actually providing tools that save you time and add value. And that makes me really excited. I fully understand the fear. I fully understand the fear.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I don&rsquo;t say that lightly. As someone who is thinking about like how it&rsquo;s going to land in 40% of the internet and who every single day is talking to people who are giving feedback about, what&rsquo;s not quite there, I don&rsquo;t spend a lot of time talking to people who are just like, oh, I&rsquo;m so excited about this.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>People don&rsquo;t go out of their way to tell you that you often hear from the people who are upset or something&rsquo;s missing or promises broken or whatever it is. And it&rsquo;s something I think about a lot. And I understand why there is panic there, especially with livelihood in the situation that we&rsquo;re in.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I have a lot of empathy for that. And I think in the future, and one of the things that I think you&rsquo;ll hear from leadership and you&rsquo;ve, everyone&rsquo;s priority heard this from leadership. It&rsquo;s just that we are purposely moving slowly and things get pooled for a reason. And it is to fulfill that promise and to think about backwards compatibility, but at the same time, balancing that with wanting to provide value for users and empowering users, especially in a day and age, when a lot of tech companies are actually taking away a lot of the power, whether it&rsquo;s in the form of privacy or what have you.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think open source and the way WordPress is working is actually trying to resist that and really focus on giving everything we can to the user, to build the site that they want and to have the experience that they want. And also to free them up, to focus on what the site actually gives them, whether it&rsquo;s a business or platform.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think that&rsquo;s the part that makes me&hellip; that hopefully makes other people excited. And that makes me really excited.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:40:26]</div> <div class=\"chat-text\"><p>Speaking to that. You&rsquo;ve done an incredible job answering all of my questions and you&rsquo;ve obviously got to wear the Automattic hat during a discussion like this. I&rsquo;m curious if we cast away the Automattic hat just for a moment and we ask you personally, what in the next six months to a year, what&rsquo;s the one single thing, the thing that you are most excited about, the thing that you most want to see happen, the thing that gets you personally switched on about the project.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:40:54]</div> <div class=\"chat-text\"><p>It&rsquo;s a great question. I would have to say block patterns, because we&rsquo;re talking about all these tools and features and things coming along, but ultimately as a user, it&rsquo;s like, what can I do, and what can I do quickly? And block patterns will really be the glue that ties together all these projects. You can insert a block pattern, manipulate it as you want to. And when you&rsquo;re manipulating it, you probably won&rsquo;t be thinking about the fact that you might be using global styles or that the block pattern is relying on block styles or whatever it is.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>But the power of that. And the promise of that, I think is just such a high impact, such a high impact feature that will really be like a cherry on top. And we&rsquo;ll bring together a lot of the things that we&rsquo;re talking about in a way that will be really tangible. And especially in this world of, you know, we&rsquo;re not able to gather in person we&rsquo;re not able to have those moments.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think having something that is easy to understand almost the point of being, so intuitive that it&rsquo;s like, why didn&rsquo;t we do this years ago? That&rsquo;s what I want the feeling to be. And that&rsquo;s when I had someone in design, tell me this one time. And it always stuck with me as like the best ideas are the ones where you&rsquo;re like, well, no, duh, like, yeah, of course.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And that&rsquo;s what block patterns I think you&rsquo;re going to feel like, and I think it&rsquo;s really gonna fulfill a lot of these things and bring a lot of these things that we&rsquo;re talking about together in a way that will be really fun to play with. And also people will be able to submit to the block pattern directory, ideally in the future, similar to the block plugin directory.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So personally, I&rsquo;m most excited to see the marriage between block patterns and full site editing along with these hybrid themes.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:42:24]</div> <div class=\"chat-text\"><p>I know there will be no metric to judge this, but it would be fascinating in a couple of years time. Were we able to measure it, to see just how much of humanity&rsquo;s time has been saved by something like block patterns, the fact that you don&rsquo;t have to do things over and over again. Yeah. I completely understand why you&rsquo;ve selected that one. We have gone through so many questions. If somebody at the end of this, has been listening to this and thinks I would like to help, but I want to contact Anne directly before I go to these Slack channels and Github repos and so on. How might somebody get in touch with you should they wish to?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:43:01]</div> <div class=\"chat-text\"><p>I would say go to my website. I am a weird millennial without social media. I jump on and off of Instagram. That&rsquo;s my one holdout. I love photography too much, but yeah, my website is nomad.blog and I have a contact page and I truly welcome to hear from anyone seriously. All I ask, and this is on my website as well. I like to do pen pal. Kind of writing back and forth. I think we don&rsquo;t rely, I think email, I&rsquo;ve read too many books about this, but I think email has ruined our ability to relax and unwind, and I refuse to opt into this always responding world. So as long as you&rsquo;re patient with me, and if I get a bunch of emails, as long as you&rsquo;re patient with me responding, I promise I will respond genuinely with a lot of thought. I do not like to do short, low quality responses. So if you&rsquo;re willing to engage there, that would be awesome to hear from you. I&rsquo;m also an annezazu in WordPress dot org Slack, if you end up joining there as well.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:43:53]</div> <div class=\"chat-text\"><p>Well, thank you very much. I appreciate all of the hard work that you and everybody connected in the project is doing. It&rsquo;s making great inroads into our editing experience in WordPress. Greatly appreciated. Thanks for coming on the podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:44:06]</div> <div class=\"chat-text\"><p>Of course. Thank you so much for having me.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"></div></div></div></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Apr 2021 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: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:60:\"HeroPress: You Don’t Have To Want What Everyone Else Wants\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3539\";s:7:\"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:166:\"https://heropress.com/essays/you-dont-have-to-want-what-everyone-else-wants/#utm_source=rss&utm_medium=rss&utm_campaign=you-dont-have-to-want-what-everyone-else-wants\";s: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:6215:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2021/04/042121-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: You don\'t have to want what everyone else wants.\" /><p>I launched a WordPress-based business sometime around 2013. Starting a business is a goal for a lot of people, but it was never something I intentionally set out to do. I was in university at the time and blogging about books &#8212; just doing something I loved. But then I had an idea for a WordPress plugin that would make book bloggers’ lives easier. Although I did decide to sell it instead of releasing it for free, making a lot of money was never my goal. I thought maybe I’d make $500 overall if I was lucky. But three months in I’d already made nearly $1500 and those numbers would only continue to climb.</p>\n<p>By the time I graduated university, this little business of mine was already fully paying my bills. I went straight from graduation to running a full time business. Over the next few years, I sold pre-made plugins, built custom plugins, launched custom websites for authors and bloggers, dipped into the managed WordPress hosting space, and created WordPress e-courses. Objectively, business was great.</p>\n<blockquote><p>But by 2016, I was waking up every morning and thinking, <i>“What the hell am I doing?”</i></p></blockquote>\n<p>The more my business grew, the more I was afraid it was about to crash and burn.</p>\n<p>The more I diversified, the less confident I felt about what I was doing.</p>\n<p>Above everything, I was <i>tired</i>.</p>\n<h2>Turns out, I’m not a businesswoman</h2>\n<p>I was tired of selling, of marketing, of advertising, of promoting. I was tired of asking myself <i>“will this sell?”</i> before I started a new project. I missed creating just for the sheer fun and joy of it, which was how my very first plugin even came to be. I just wanted to build cool things and quietly release them into the wild. I love to <i>create</i> but I don’t love to <i>sell</i>.</p>\n<p>Perhaps I could have hired people to help me with the aspects of my business I didn’t enjoy, but although business was going well for a one person show, I didn’t feel like it was going well enough to hire more people and confidently feel like I could pay their salary every month. And the thought of having that responsibility just brought me even more anxiety.</p>\n<blockquote><p>I felt stuck and, honestly, ashamed of how I felt about my business. Was I being ungrateful?</p></blockquote>\n<p>I had this incredible thing going for me &#8212; I was paying all my bills, working flexible hours (and from home!), and calling all the shots. This is what other people aspire to have, and I had it! I was embarrassed to admit that maybe I didn’t like it anymore. I didn’t want to be in charge. I didn’t want to have the entire success or failure of a business resting on my shoulders.</p>\n<p>I remember looking through job listings trying to imagine myself doing something else &#8212; anything else. But another problem I had was that running my own business straight out of school had spoiled me. I didn’t want to be in charge, but I also still wanted to work from home. I still wanted flexible hours. I didn’t want to sacrifice my 3pm gym session. I still wanted a certain degree of freedom in what I did each day. I wanted all the benefits of running my own business, without any of the downsides I had come to dread.</p>\n<h2>A well timed opportunity</h2>\n<p>In late 2016, sheer luck and good timing brought me to Sandhills Development. I was offered a job at a company that could amazingly check every box on my dream list. I could work from home, set my own hours, have a weird schedule, still make the gym at 3pm, and most importantly: my job would just be <i>one</i> thing. I could focus on building really cool stuff, and nothing else. I wouldn’t have to think about marketing or sales or profit.</p>\n<p>It’s been over four years since then and I’m now the lead developer for Easy Digital Downloads &#8212; the plugin I originally used to sell my first product. So I think things are going pretty well! My old business does still exist, but in a very low key way. I still work on and maintain the products out of love and passion for them, but with zero pressure to actually make sales or be successful.</p>\n<blockquote><p>The biggest difference is the boundaries I’ve been able to create in my life.</p></blockquote>\n<p>When running my own business, I didn’t work all day long, but I did tend to think about work all the time. Growth was always on my mind because making that happen was purely up to me. I was putting so much pressure on myself to do well, that I couldn’t stop thinking about it. But now, work goes away as soon as I decide I’m done for the day. I don’t think about it after hours. There’s comfort in the fact that although I care about the company, it’s not <i>my</i> company, and the success &#8212; or failure &#8212; of the company isn’t purely up to me; if something does go wrong when I’m gone, there’s someone else capable of handling it.</p>\n<h2>What works for someone else may not work for you</h2>\n<p>Some people would consider it a downgrade to go from business owner to employee, but it was absolutely the right move for me. Running your own business is often glamorized, but not everyone is cut out to wear all the hats that a one-person business requires, and not everyone has the drive to grow a business into something larger. And that’s okay. At the time, it was immensely hard for me to admit that out loud because I thought it would make me a failure.</p>\n<p>There is no “one size fits all” dream job and I learned that being the owner of a company is not mine. If what you’re doing now isn’t working then there’s absolutely no shame in bowing out, even if you’re currently living someone else’s dream.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/you-dont-have-to-want-what-everyone-else-wants/\">You Don&#8217;t Have To Want What Everyone Else Wants</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Apr 2021 08:27:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ashley Gibson\";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:62:\"WPTavern: WordPress Contributors Propose Blocking FLoC in Core\";s:7:\"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=115316\";s:7:\"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:169:\"https://wptavern.com/wordpress-contributors-propose-blocking-floc-in-core?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-contributors-propose-blocking-floc-in-core\";s: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:7493:\"<p>WordPress contributors are <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/\">proposing</a> the project take an active position on Google&rsquo;s Federated Learning of Cohorts (FLoC). This particular mechanism is Google&rsquo;s alternative to third-party cookies that doesn&rsquo;t require collecting users&rsquo; browsing history. The <a href=\"https://github.com/WICG/floc\">GitHub repository for FLoC</a> explains how Google will group people together and label them using machine learning:  </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We plan to explore ways in which a browser can group together people with similar browsing habits, so that ad tech companies can observe the habits of large groups instead of the activity of individuals. Ad targeting could then be partly based on what group the person falls into.</p><p>Browsers would need a way to form clusters that are both useful and private: Useful by collecting people with similar enough interests and producing labels suitable for machine learning, and private by forming large clusters that don&rsquo;t reveal information that&rsquo;s too personal, when the clusters are created, or when they are used.</p></blockquote>\n\n\n\n<p>WordPress contributors are proposing blocking FLoC in core, citing the Electronic Frontier Foundation&rsquo;s article titled &ldquo;<a href=\"https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea\">Google&rsquo;s FLoC Is a Terrible Idea</a>.&rdquo; </p>\n\n\n\n<p>&ldquo;WordPress powers approximately 41% of the web &ndash; and this community can help combat racism, sexism, anti-LGBTQ+ discrimination and discrimination against those with mental illness with a few lines of code,&rdquo; the proposal states.</p>\n\n\n\n<p>One of the more controversial aspects of the original proposal was that it was spectacularly miscategorized as a security concern, clouding the issue at hand. It identified FLoC as a security issue for the sake of getting it into core on a more aggressive timeline, which was outlined as follows:</p>\n\n\n\n<ol><li>Include the&nbsp;patch&nbsp;the next&nbsp;minor release, rather than waiting for the next&nbsp;major release;</li><li>Back-port the patch to previous versions of WordPress.</li></ol>\n\n\n\n<p>The proposal was later revised to clarify that treating FLoC like a security concern referenced only the timeline of accelerated development and back-porting.</p>\n\n\n\n<p>Although blocking FLoC seemed to have wide support in the comments on the post, the premature suggestion of treating it as a security concern weakened the proposal. </p>\n\n\n\n<p>WordPress core committer Ryan McCue said that while he is in agreement with the overall sentiment, rolling it out like a security updatet would abuse users&rsquo; trust in automatic updates:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The implicit contract with users for security autoupdates is that they are used in order to protect the user from their site (data or codebase) being compromised imminently. This isn&rsquo;t the case with FLoC, and may in some cases damage the site&rsquo;s behaviour.</p><p>More concretely: as someone who operates a hosting service where we keep users up-to-date with security patches, this changes our approach substantially. Right now, we can confidently roll out security updates trusting the update has minimal effect outside of purely security changes, but breaching that barrier means that now scrutiny needs to be applied to every security update in order to avoid rolling out potentially breaking changes to our clients.</p><p>That erosion of trust would ultimately hurt WP&rsquo;s users.</p></blockquote>\n\n\n\n<p>The proposal has started an active discussion with more than 100 commenters, including participation from the Chrome DevRel team who added more context on the current status of the experiment.</p>\n\n\n\n<p>&ldquo;It&rsquo;s also worth noting that because this is an origin trial it means that nothing is set in stone &mdash; this is an experiment to gather feedback,&rdquo; Chrome Developer lead Rowan Merewood said. &ldquo;The API may change, the opt-out mechanism may change, the eligibility criteria may change. Any code changes relating to an origin trial should also be treated as temporary and experimental.&rdquo;</p>\n\n\n\n<p>Those who were critical of the proposal consider FLoC a personal privacy issue that is not WordPress&rsquo; problem to solve. Others believe a proposal to block FLoC is reactionary at this point, since Google has not yet finalized its FLoC experiment. </p>\n\n\n\n<p>&ldquo;Thinking about users&hellip; i.e. the readers of a&nbsp;blog, they deserve choice,&rdquo; Andy Beard commented.</p>\n\n\n\n<p>&ldquo;They can choose which browser they use.<br />&ldquo;They can choose settings in the browser.<br />&ldquo;They can choose some overall options on a Google privacy site.<br />&ldquo;They can install a multitude of plugins.</p>\n\n\n\n<p>&ldquo;Alternatively, if WordPress blocks FLoC by default, that actually removes a choice &ndash; the choice of a user to see more relevant advertising.&rdquo;</p>\n\n\n\n<p>Several participants in the discussion were opposed to FLoC but also not supportive of a WordPress core effort to block it.</p>\n\n\n\n<p>&ldquo;While I&rsquo;m not pro-FLoC (and won&rsquo;t have my browsers using it) I certainly wouldn&rsquo;t expect a website to make the choice to opt-out for me, and I can&rsquo;t see why the majority of WordPress users and people visiting WordPress sites would expect that either,&rdquo; WordPress lead developer Dion Hulse commented.</p>\n\n\n\n<p>&ldquo;Perhaps more importantly, would WordPress also continue to opt out all future browser protocols too? Once you delve into blocking one, you&rsquo;ve either got to block them all, or you&rsquo;re playing favorites.&rdquo;</p>\n\n\n\n<p>Mika Epstein, who also expressed her opinion as anti-FLoC, said she is not in support of backporting a block due to the practicality of such an effort.</p>\n\n\n\n<p>&ldquo;If the decision is made to include this, I would support it as a&nbsp;<em>filterable privacy&nbsp;enhancement</em>&nbsp;only, not security,&rdquo; Epstein said.</p>\n\n\n\n<p>&ldquo;That said, I do&nbsp;<strong>not</strong>&nbsp;support backporting with the precedent that we did not&nbsp;backport&nbsp;the GDPR exporting stuff. Having it exist as a&nbsp;plugin&nbsp;(there are three already) is sufficient for those who are on older versions. The undue strain of increased backporting needs to be minimized, not maximized in my opinion.&rdquo;</p>\n\n\n\n<p>Others commented on the harm to independent publishers whose main source of revenue is often advertising.</p>\n\n\n\n<p>WordPress lead developer Helen Hou-Sandi requested the proposal be re-written to clarify the differences between disabling FLoC on a site level vs the browser level as a consumer. She also discouraged referring to the matter as a security issue and recommended the proposal&rsquo;s proponents justify the work required to backport the block. Hou-Sandi recommended opening a trac ticket as a more appropriate avenue of discussion regarding core implementation and inclusion, as contributors have not yet reached a consensus.</p>\n\n\n\n<p>The topic will be up for discussion at the next core developers&rsquo; chat on Wednesday, April 21, 2021. Representatives from the Chrome team <a href=\"https://make.wordpress.org/core/2021/04/20/dev-chat-agenda-for-april-21-2021/#comment-41165\">will also be attending</a> to answer any questions about FLoC.</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, 21 Apr 2021 05:17:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:114:\"WPTavern: Patchstack Whitepaper: 582 WordPress Security Issues Found in 2020, Over 96% From Third-Party Extensions\";s:7:\"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=115396\";s:7:\"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:267:\"https://wptavern.com/patchstack-whitepaper-582-wordpress-security-issues-found-in-2020-over-96-from-third-party-extensions?utm_source=rss&utm_medium=rss&utm_campaign=patchstack-whitepaper-582-wordpress-security-issues-found-in-2020-over-96-from-third-party-extensions\";s: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:4647:\"<p class=\"has-drop-cap\">Patchstack, which recently <a href=\"https://wptavern.com/webarx-rebrands-to-patchstack-combines-services-to-focus-on-wordpress-plugin-and-theme-security\">rebranded from WebARX</a>, released its <a href=\"https://patchstack.com/wordpress-security-2020/\">2020 security whitepaper</a>. The report identified a total of 582 security vulnerabilities. However, only 22 of the issues came from WordPress itself. Third-party plugins and themes accounted for the remaining 96.22%.</p>\n\n\n\n<p>&ldquo;These are all security issues disclosed by the Patchstack internal research team, Patchstack Red Team community, by third-party security vendors, and by other independent security researchers,&rdquo; said Oliver Sild, Patchstack founder and CEO. &ldquo;So it includes all public information about vulnerabilities.&rdquo;</p>\n\n\n\n<p>Patchstack is a security company that focuses on third-party extensions to WordPress. Its <a href=\"https://patchstack.com/database/\">vulnerability database</a> is public and available for anyone to view.</p>\n\n\n\n<p>In the second quarter of 2020, Patchstack surveyed nearly 400 web developers, freelancers, and agencies about web security. &ldquo;Over 70% responded that they were increasingly worried about the security of their website, and the top reason was &lsquo;vulnerabilities in third-party plugins,\'&rdquo; according to the whitepaper. &ldquo;About 45% of respondents saw an increase in attacks on websites they were managing, and 25% had to deal with a hacked website in the month prior to participating in the survey.&rdquo;</p>\n\n\n\n<p>Ranking at the top, 211 of the vulnerabilities found were Cross-Site Scripting (XSS) issues, 36.2% of the total.</p>\n\n\n\n<p>&ldquo;XSS in WordPress plugins almost always happens because user input data is directly printed onto the screen without any sanitization,&rdquo; said Sild. &ldquo;<code>esc_html</code> would be used to convert certain characters to their HTML entities, so it will be literally printed onto the screen. Then you also have <code>esc_attr</code> for user input variables, which need to be used in HTML attributes. There are many good resources published by <a href=\"https://owasp.org/\">OWASP</a> (The Open Web Application Security Project), such as the &lsquo;Secure Coding Practices.\'&rdquo;</p>\n\n\n\n<p>Injection vulnerabilities ranked second with 70 unique cases. It was followed by 38 Cross-Site Request Forgery (CSRF) issues and 29 instances of sensitive data exposure.</p>\n\n\n\n<p>&ldquo;The vulnerabilities found in plugins and themes tend to be more severe than those found in WordPress core,&rdquo; wrote Sild in the whitepaper. &ldquo;What makes matters worse is that many popular plugins have millions of active installations, and the numbers aren&rsquo;t pretty when we look at how many websites are affected by the vulnerable plugins.&rdquo;</p>\n\n\n\n<p>The total number of active and vulnerable theme and plugin installations throughout the year was 70 million. <a href=\"https://central.wordcamp.org/about/\">According to WordCamp Central</a>, WordPress is installed on 75 million websites. Many sites likely had more than one vulnerable plugin during 2020 rather than 70 million individual sites being at risk.</p>\n\n\n\n<p>Patchstack surveyed 50,000 websites and found that they averaged 23 active plugins at a time. About four on each site were outdated with an upgrade available, which often increases the risk of a security issue.</p>\n\n\n\n<p>WordPress plugins accounted for 478 vulnerabilities in the report. However, there were only 82 unique theme issues. While themes are typically far more limited in scope, they can do anything a plugin can do with a few exceptions.</p>\n\n\n\n<p>It is not surprising to see that number lower for themes. However, one has to wonder if the <a href=\"https://wptavern.com/upcoming-changes-and-steps-for-an-overhauled-wordpress-theme-review-system\">ongoing plan</a> to loosen the WordPress.org theme directory review guidelines will factor into that in the coming year or two. Currently, reviewers for the official directory perform extensive code checks that may be more likely to catch issues before themes arrive in users&rsquo; hands. If the trade-off is better automation, it could also mean stricter coding standards and fewer security issues that human reviewers might miss.</p>\n\n\n\n<p>&ldquo;Vulnerabilities from third-party code remain as one of the biggest threats to websites build on WordPress,&rdquo; concluded Sild in the report. &ldquo;We already see a growth in unique vulnerabilities reported in the WordPress plugins and themes comparing 2020 with the beginning of 2021.&rdquo;</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, 20 Apr 2021 20:47:15 +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:\"Justin Tadlock\";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:87:\"WPTavern: Recreating the Classic Wedding WordPress Theme Homepage With the Block Editor\";s:7:\"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=115369\";s:7:\"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:219:\"https://wptavern.com/recreating-the-classic-wedding-wordpress-theme-homepage-with-the-block-editor?utm_source=rss&utm_medium=rss&utm_campaign=recreating-the-classic-wedding-wordpress-theme-homepage-with-the-block-editor\";s: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 class=\"has-drop-cap\">I simply do not understand it. For at least the better part of a decade, theme authors have asked for the tools to create more complex layouts with WordPress. They have asked for the ability to allow end-users to more easily recreate their demos. They have wanted methods to bypass the &ldquo;restrictive&rdquo; theme review guidelines.</p>\n\n\n\n<p>Over the past couple of years, WordPress has consistently delivered features that theme authors have asked for. Yet, themes that use them are few and far between.</p>\n\n\n\n<p>During my weekly perusal of the latest themes to land in the directory, a new <a href=\"https://wordpress.org/themes/classic-wedding/\">wedding theme</a> caught my attention last week. Of course, I downloaded, installed, and activated it only to find that I had no idea how to recreate the homepage design. There were no instructions. The theme options in the customizer seemed to make little sense. Nearly all of the decorative images were non-existent in the theme folder.</p>\n\n\n\n<p><em>Did I need to upgrade to the pro version to get what was in the screenshot?</em> There seems to be a plan for such a version, but it is not available yet.</p>\n\n\n\n<img />Classic Wedding theme screenshot.\n\n\n\n<p>I am no rookie, but I was stuck. I liked the simplicity of the design. However, I could not imagine setting up a wedding site with this theme. From a user&rsquo;s standpoint, it should not take more than a few mouse clicks. After that point, it should only be a matter of customizing the content.</p>\n\n\n\n<p>I recognize that there is still a sort of love/hate divide for the block editor in the <em>inner</em> WordPress community. However, theme authors are not doing any favors for the overall WordPress user base by not taking advantage of the tools available.</p>\n\n\n\n<p>So, I recreated the Classic Wedding theme homepage from scratch. Using the block editor. With a theme that supports it.</p>\n\n\n\n<h2>Creating a Wedding Homepage</h2>\n\n\n\n<p class=\"has-drop-cap\">My goal was simple. There was no demo to work from, and all I had to go on was an 800-pixel wide screenshot from the <a href=\"https://www.theclassictemplates.com/themes/free-wedding-wordpress-theme/\">theme page</a> on the author&rsquo;s site. Like I <a href=\"https://wptavern.com/recreating-the-music-artist-wordpress-theme-homepage-with-the-block-editor\">recreated the Music Artist homepage</a> several weeks ago, I wanted to do the same for Classic Wedding. With a couple of exceptions, which could have been handled by the theme, I was successful.</p>\n\n\n\n<p>Because Classic Wedding does not support the block editor itself, I could not recreate its homepage via the block editor while using the theme. It was not happening &mdash; I tried. I knew that the <a href=\"https://wptavern.com/eksell-portfolio-theme-now-available-in-wordpress-themes-directory\">Eksell WordPress theme</a> had a &ldquo;canvas&rdquo; template that allowed users to edit the entire page, so it was an easy choice.</p>\n\n\n\n<p>I also loaded the Kaushan Script and Lora fonts to more closely match the original theme. This was unnecessary for the experiment, but I wanted my recreation to at least look somewhat similar.</p>\n\n\n\n<p>I immediately knew that I would have one hurdle to overcome. The theme used an image that overlapped both the section above and below it. This requires margin controls, particularly the ability to add negative margins. Unfortunately, this is a missing component of the block editor today. It does not mean that theme authors cannot do it with custom block styles or patterns. It simply means that end-users are unable to control it from the interface.</p>\n\n\n\n<p>Because I did not want to spend my time writing the code for this, I leaned on my usual safety net, the <a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus</a> plugin. While it can be a little clunky sometimes and feel like overkill, it does include those missing features like margin options.</p>\n\n\n\n<img />Adding negative margin to an image.\n\n\n\n<p>I used <code>px</code> units there because it was easy. In a real-world project, <code>%</code> or <code>rem</code> would have been better. But I was just doing a quick proof-of-concept.</p>\n\n\n\n<p>Everything else in the content area was straightforward. I needed a Cover block with an Image, Heading, Paragraph, and Button tucked inside. I needed a Group block as a container for Image, Heading, and Paragraphs in the bottom section.</p>\n\n\n\n<p>Because the theme did not package its decorative images &mdash; <em>again, how would users recreate the homepage without them?</em> &mdash; I opted for a simple striped SVG background instead of the flowers in the original. Since I already had Editor Plus installed, I added an SVG from <a href=\"https://heroicons.com/\">Hero Icons</a> as the main background.</p>\n\n\n\n<img />Wedding page content recreation.\n\n\n\n<p>My original idea was to recreate the &ldquo;content&rdquo; part of the homepage only. However, it was a bit boring on its own. Therefore, I transformed everything into a Columns block and added the sidebar. I recreated the primary elements using the Image, Heading, Paragraph, and Navigation blocks. Then, I added a Social Icons block for fun.</p>\n\n\n\n<img />Full wedding homepage design.\n\n\n\n<p>I did hit one snag with the Navigation block. WordPress does not currently offer a method of centering each link in the list when using the vertical block variation. I had to write a couple of lines of CSS to make this happen. This seems like an oversight and one area where the block editor failed to meet my expectations. Of course, this could be handled on the theme side of things.</p>\n\n\n\n<p>Overall, this was a relatively simple project. However, this experiment added some complexities that were not present when I recreated the Music Artist homepage. Margin controls and vertical Navigation block alignments are must-haves. Using a third-party plugin and writing custom CSS is not ideal, and these were requirements to make this happen straight from the editor.</p>\n\n\n\n<p>All of this is possible from the theme end. Each piece of this design could have been packaged as a block pattern. The overlapping image effect would have made for a neat block style. I just wish that theme authors would start utilizing the features that are being hand-fed to 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:\"Mon, 19 Apr 2021 21:42:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:\"WPTavern: Automattic Launches Jetpack Boost: A New Performance Plugin\";s:7:\"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=114913\";s:7:\"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:181:\"https://wptavern.com/automattic-launches-jetpack-boost-a-new-performance-plugin?utm_source=rss&utm_medium=rss&utm_campaign=automattic-launches-jetpack-boost-a-new-performance-plugin\";s: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:4877:\"<p>The Jetpack team has been quietly testing a new plugin called <a href=\"https://wordpress.org/plugins/jetpack-boost/\">Jetpack Boost</a>, which addresses website owners&rsquo; performance and SEO concerns. Version 1.0 was released today, one month after the final pre-release came out in March.</p>\n\n\n\n<p>Boost is a separate plugin under the Jetpack brand and it does not require Jetpack core to work. The first iteration bundles three performance modules:</p>\n\n\n\n<ol><li><em><strong>Local Critical CSS</strong></em>&nbsp;generates optimized styles for the homepage, posts, and pages to display content faster, especially for visitors on mobile devices.</li><li><em><strong>Defer Non-Essential Javascript</strong></em>&nbsp;moves some tasks to after the page loads, so visible items load faster.</li><li><em><strong>Lazy Image Loading</strong></em>&nbsp;loads images as the visitor scrolls them into view. </li></ol>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Once the plugin is installed, users can toggle the modules on or off. Optimizing the site&rsquo;s CSS can be a lengthy process but it shows a progress bar and alerts you if are trying to navigate away from the page before it&rsquo;s finished. Jetpack Boost displays an initial score when it&rsquo;s first installed and will update after optimizations are put in place. </p>\n\n\n\n<p>Here&rsquo;s an example score from a relatively unoptimized simple blog with 20 active plugins:</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After installing Jetpack Boost, there was a significant improvement on scores in the dashboard. It&rsquo;s not a magic wand but it&rsquo;s a fairly user-friendly way to tackle some basic performance issues that may translate into a better visitor experience. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Checking the before and after scores on <a href=\"https://web.dev/measure/\">web.dev</a> demonstrates a noticeable improvement on the Core Web Vitals assessment. For some websites this could mean the difference between passing or not (meaning 75% of pages on the domain pass).</p>\n\n\n\n<div class=\"wp-block-image\"><img />Before installing Jetpack Boost</div>\n\n\n\n<img />After installing Jetpack Boost\n\n\n\n<p>Automattic engineer Nauris P&#363;&#311;is, who worked on the project, said one reason the plugin was created was to help users &ldquo;get their Web Vitals up and make the web a better place.&rdquo;</p>\n\n\n\n<p>Google Search will be <a href=\"https://wptavern.com/google-search-to-add-page-experience-to-ranking-signals-in-may-2021\">adding Page Experience to ranking signals</a> in May 2021, and WordPress sites need all the help they can get. Page Experience is measured by a website&rsquo;s <a href=\"https://web.dev/vitals/#core-web-vitals\">Core Web Vitals</a>&nbsp;metrics, but these scores are not easy to improve without some technical knowledge and troubleshooting.</p>\n\n\n\n<p>Despite Jetpack already including so many different, varied features, Automattic opted to put the Boost modules in a separate plugin. </p>\n\n\n\n<p>&ldquo;We want Jetpack Boost to have a life of its own &ndash; focused on performance and make it available to everyone, including people who don&rsquo;t want to use the main Jetpack plugin,&rdquo; P&#363;&#311;is said.</p>\n\n\n\n<p>The plugin was built with the same modular structure as Jetpack core, so users can easily deactivate modules they don&rsquo;t want to use. This is helpful for ensuring compatibility with other performance or caching plugins that website owners may already be using.<br /><br />&ldquo;You&rsquo;ve probably noticed that both Jetpack and Boost have lazy loading images &ndash; it&rsquo;s the exact same module,&rdquo; P&#363;&#311;is said. &ldquo;If the user happens to have both Jetpack and Jetpack Boost active &ndash; it&rsquo;ll just use the most recent version of Lazy Loading Images.&rdquo;</p>\n\n\n\n<p>The features in version 1.0 are just the beginning of Automattic&rsquo;s plans for Jetpack Boost. The project appears to be on track to become a full-blown performance plugin that may even migrate some of Jetpack core&rsquo;s performance-related functionality.</p>\n\n\n\n<p>&ldquo;Version 1.0.0 is being released the &ldquo;<a href=\"https://ma.tt/2010/11/one-point-oh/\">one-point-oh</a>&rdquo; way,&rdquo; P&#363;&#311;is said. &ldquo;We&rsquo;re releasing as early as we can call it stable &ndash; but there&rsquo;s so much that we want to do. Starting with simple modules that package up other typical optimization techniques (like concatenation, minification, maybe even photon?) &ndash; all the way to more advanced ideas like performance tracking, intelligent performance suggestions, etc.&rdquo; </p>\n\n\n\n<p>P&#363;&#311;is said none of these ideas are set in stone and the team is open to exploring and building modules that will have the highest performance impact after getting more feedback.</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, 19 Apr 2021 17:37: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"Gutenberg Times: Page Template Editor for WordPress 5.8, Videos and Plugins – Weekend Edition #166\";s:7:\"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=17602\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://gutenbergtimes.com/page-template-editor-for-wordpress-5-8-videos-and-plugins-weekend-edition-166/\";s: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:14988:\"<p>Howdy, </p>\n\n\n\n<p>Yes, it&#8217;s been a while that you received a fully curated Weekend edition. After the move it took a while to get my office operational again. We still have too many boxes to unpack, though.  </p>\n\n\n\n\n\n<p>Nevertheless, let&#8217;s catch up on Gutenberg news together! </p>\n\n\n\n<p>All the best, <br />Birgit 💕</p>\n\n\n\n<h2>Gutenberg 10.4 Released (and 10.4.1) </h2>\n\n\n\n<p>The <strong><a href=\"https://gutenbergtimes.com/podcast/changelog-42-full-site-editing-scope-for-wordpress-5-8/\">Gutenberg Changelog episode 42</a></strong> is now available. <strong>Grzegorz (&#8220;Greg&#8221;) Ziolkowski </strong>and I discuss Full-site Editing Scope for WordPress 5.8, Gutenberg’s 10.4,  Gallery Block Refactor and Block-Based Theme updates.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> of the WP Tavern wrote about the Gutenberg 10.4 release: <a href=\"https://wptavern.com/gutenberg-10-4-introduces-block-widgets-in-the-customizer\">Gutenberg 10.4 Introduces Block Widgets in the Customizer</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Full-Site Editing and WordPress 5.8 </h2>\n\n\n\n<p>If you now find yourself in the position to learn more about the extent of Full-Site Editing experience, I have a real treat for you: <a href=\"https://gutenbergtimes.com/video-full-site-editing-overview-with-anne-mccarthy/\">A 30-min video Full-Site Editing Overview by</a>, Anne McCarthy, Developer Relations for the Gutenberg project. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On April 14, 2021, the Gutenberg and 5.8 release leads held a meeting, with Matias Venture giving a tour of the current state of the Phase 2 of Gutenberg development. The outcome of the meeting was a decision on Go/NoGo for component that make it into core for WordPress 5.8.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> provide in <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">her follow-up post </a>a list of the detailed scope, the video of the meeting and a transcript of the recording. </p>\n\n\n\n<h3>The block editor scope </h3>\n\n\n\n<ul><li>Improvements from Gutenberg 9.9 to 10.7 plugin version. </li><li>Introduce 25 new blocks (Query, Site Logo, Navigation,Posts, Comments, Archives etc. ), the most valuable among them will be the Query Block. </li><li><code>theme.json</code> Mechanism for Theme builders (<a href=\"https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-json/\">see developer documentation</a>)</li><li>Template Editor for Pages/Blank Template. (<a href=\"https://youtu.be/c4IFn73Nzvk?t=2859\">see demo by Marcus Kazmierczak</a>)</li><li>Widgets Screen &amp; Block widgets in Customizer.</li><li>Design tools: Duotone, Layout controls, padding, etc.</li></ul>\n\n\n\n<p>There is the caution stated in the post: <em>&#8220;Not all the above are currently ready, but there’s some level of confidence that they can be by the time of 5.8.&#8221;</em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>For the <strong>Template Editor for Pages/Blank Template</strong> you can see it <a href=\"https://youtu.be/c4IFn73Nzvk?t=2859\">in action in a demo</a> by <strong>Marcus Kazmierczak</strong>, he gave at the Mega Meetup last week. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Bud Kraus</strong> of JoyofWP showed us in his video, <a href=\"https://joyofwp.com/whats-the-future-of-the-wordpress-widget/\">how the Widget screen will look like in the future.</a> It does not show the Widget handling in the Customizer yet, but that is to come to WordPress 5.8. You could see a short piece of it in Matias Ventura&#8217;s demo video from the release leads meeting. It is now already available in the latest Gutenberg plugin release. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n<p><strong> <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 2021&#8221;</a> </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. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<p><strong>Justin Tadlock</strong> summarized last week&#8217;s announcements in <strong><a href=\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8\">Full Site Editing Is Partly a ‘Go’ for WordPress 5.8</a></strong></p>\n\n\n\n<h2>Testing Full-Site Editing</h2>\n\n\n\n<p>As the latest Full-Site Editing Call of Testing, <strong>Anne McCarthy</strong> has a <strong><a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">Query Quest for you.</a></strong> Again with a great set of test instruction, you are guided towards usage and various features of the Query Block and its accompanying new post blocks for title, content, comments, feature image and pagination.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> discussed this task a bit further in his article: <strong><a href=\"https://wptavern.com/fse-outreach-round-5-venturing-out-a-query-quest\">FSE Outreach Round #5: Venturing out a Query Quest</a>.</strong> &#8220;Testing never has to be boring. I encourage participants to grab inspiration from their lives as they venture out on their Query Quest.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Apropos Testing: <strong>Sarah Gooding</strong> wrote about our Gutenberg Nightly plugin to get the latest development of the block-editor in an easy to handle plugin. <strong><a href=\"https://wptavern.com/set-up-a-gutenberg-test-site-in-2-minutes-with-the-gutenberg-nightly-plugin\">Set Up a Gutenberg Test Site in 2 Minutes with the Gutenberg Nightly Plugin</a></strong>.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\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 main (trunk) 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<p></p>\n\n\n\n\n<p><strong>Anne McCarthy</strong> curated all the feedback from the fourth testing call: <a href=\"https://make.wordpress.org/test/2021/03/30/fse-program-custom-404-page-testing-summary/\"><strong>FSE Program Custom 404 Page Testing Summary</strong></a></p>\n\n\n\n<h2>Block-Based Themes</h2>\n\n\n\n<p><strong>Helen Hou-Sandi</strong> streamed on Twitch her <a href=\"https://www.twitch.tv/videos/981424705\">exploration session to create a block-based theme</a> for the Full-Site Editing.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Kjell Reigstad</strong> opened an issue for <a href=\"https://github.com/WordPress/gutenberg/issues/30508\"><strong>Query Block Pattern inspirations.</strong></a> There are great examples posted that could be converted to pattern, that could be bundled with WordPress 5.8  </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Marcus Kazmierczak</strong> also used Twitch to stream his <a href=\"https://www.twitch.tv/mkaz7000\">Lunch &amp; Learn series on Block-based themes.</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Keep abreast on specific Theme related development and discussions with the weekly round-up from the Themes Team. <strong>Kjell Reigstad</strong> posted this week&#8217;s edition. <a href=\"https://make.wordpress.org/themes/2021/04/16/gutenberg-themes-week-of-apr-12-2021/\"><strong>Gutenberg + Themes: Week of Apr 12, 2021</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>A couple of PRs that should help with <strong>transitioning existing themes to be block-based:</strong></p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/gutenberg/pull/30345\"><strong>Add do_block_template_part function</strong></a><br />New gutenberg_block_template_part(), gutenberg_block_header_area(), and gutenberg_block_footer_area() functions to help pull block-based template parts into existing PHP templates: </li><li><a href=\"https://github.com/WordPress/gutenberg/pull/30438\"><strong>Allow creating custom block templates in classic themes</strong></a> Allowing people to create and use block-based page template for certain pages on their site, even while using a non-block-based theme.</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In their latest episode of WPCafe co-hosts <strong>Mark Wilkinson</strong> and <strong>Keith Devon</strong> talked about <a href=\"https://www.youtube.com/watch?v=jAIlY3lTAos\">Building Twenty-Twenty-One with Caroline Nymark and Mel Choyce-Dwan</a>. </p>\n\n\n\n<h2>Plugins for the Block Editor</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/gutentor/\">Gutentor</a></strong> published a collection of 70+ Blocks and layouts for Gutenberg Editor. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>If you are working on your set of Blocks for the editor, <strong>Justin Tadlock</strong> has some thoughts to consider: <a href=\"https://wptavern.com/yet-another-wordpress-block-library-plugin\"><strong>Yet Another WordPress Block Library Plugin</strong></a>. He is making a well though through case to suggest more unique blocks to fill the gap to the core blocks. It seems to me that, two years of seeing block collections being acquired by big companies like Atom Blocks, Co Blocks and latest <a href=\"https://wptavern.com/ithemes-acquires-kadence-wp-plans-to-sunset-legacy-themes-in-2022\">Kadence Blocks</a>, might tempt a small developer team to come up with  another set of blocks matching a specific theme and hope for an acquisition by another big company in the space. There might be space for a few more, indeed. </p>\n\n\n\n<p>Tadlock&#8217;s longs for something new, a unique extension of core or a missing tool:</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/display-digital-sheet-music-with-the-wordpress-block-editor\">Display Digital Sheet Music With the WordPress Block Editor</a></li><li><a href=\"https://wptavern.com/block-a-saurus-embeds-a-side-scrolling-t-rex-game-via-the-block-editor\">Block-a-saurus Embeds a Side-Scrolling T-Rex Game via the Block Editor</a></li><li><a href=\"https://wptavern.com/emoji-conbini-and-the-case-for-a-block-enhancements-directory\">Emoji Conbini and the Case for a Block Enhancements Directory</a></li><li><a href=\"https://wptavern.com/insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin\">Insert Font Awesome Icons Into the Block Editor via the JVM Gutenberg Rich Text Icons Plugin</a></li><li><a href=\"https://gutenbergtimes.com/writers-rejoice-iceberg-delivers-distraction-free-writing-for-wordpress/\">Writers Rejoice! Iceberg Delivers Distraction-free Writing for WordPress</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/conditional-blocks/\">Conditional Blocks</a></strong> by Morgan Hvidt allows you to create block that are displayed when certain conditions apply. We saw other plugins that offer that, like <a href=\"https://wordpress.org/plugins/block-visibility/\">Block Visibility by Nick Diego</a>. This one is a bit different. It allows you to change content depending on HTTP referrer, so if someone comes from Twitter, they could see a different message than someone coming from a Google Search or a link in a newsletter or an affiliate link. The plugin is also available as a pro version with premium features at <a href=\"https://conditionalblocks.com\">conditionalblocks.com</a>. </p>\n\n\n\n\n<p> <a href=\"https://gutenbergtimes.com/podcast/changelog-42-full-site-editing-scope-for-wordpress-5-8/\"><strong>Episode #4</strong>2 is now available</a>, with new co-host <strong>Grzegorz Ziolkowski</strong></p>\n\n\n\n<p> <strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast </strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<img />\n\n\n\n\n<h2>People and Community</h2>\n\n\n\n<p>It&#8217;s been already a year that <strong>Anne McCarthy</strong> joined the Gutenberg team as a developer relations wrangler. It has been a great pleasure meeting Anne and collaborating with her has been quite inspiring, and I learned a lot from her wisdom and her wealth of ideas. She has also become a good friend. She is som much better and being a remote friend that I ever will be. On her personal block Anne published <a href=\"https://nomad.blog/2021/04/17/one-year-in-devrel/\"><strong>One year in DevRel</strong></a></p>\n\n\n\n<p>Anne&#8217;s pioneer work with WordPress open-source project has been so successful that <a href=\"https://boards.greenhouse.io/automatticcareers/jobs/2937422\">Automattic wants to sponsor another person for developer relations.</a></p>\n\n\n\n<h2>Developing with ReactJS and Gutenberg Blocks. </h2>\n\n\n\n<p><strong>Rob Stinson</strong> wrote a tutorial on how <a href=\"https://studiopress.blog/the-ultimate-guide-to-building-custom-collections-in-genesis-blocks/\">to building custom Collections in Genesis Blocks.</a> Now Collections in this context are Layout templates, that extend existing Genesis blocks. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong> Mark Howells-Mead </strong>uses <a href=\"https://permanenttourist.ch/2021/04/using-react-and-wordpress-to-build-an-interactive-performant-single-page-application\">ReactJS to build interactive single page applications with WordPress</a> and wrote a tutorial. It&#8217;s not at all about Blocks and Gutenberg, but it&#8217;s related to the skill set of learning ReactJS and hopefully inspired developer to gradually make the transition. </p>\n\n\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 18 Apr 2021 23:33: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: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: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:67:\"WPTavern: Gutenberg 10.4 Introduces Block Widgets in the Customizer\";s:7:\"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=115274\";s:7:\"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:179:\"https://wptavern.com/gutenberg-10-4-introduces-block-widgets-in-the-customizer?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-4-introduces-block-widgets-in-the-customizer\";s: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:3021:\"<p>The latest release of the Gutenberg plugin (<a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">10.4)</a> brings <a href=\"https://github.com/WordPress/gutenberg/issues/29285\">block widgets into the Customizer</a>. When customizing widget-enabled areas, a new block inserter icon is now available for dropping blocks into sidebars. This is the first iteration of <a href=\"https://github.com/WordPress/gutenberg/issues/26900\">block management in the Customizer</a>, tackling the technical integration for editing blocks while also taking advantage of the live preview in the Customizer.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Version 10.4 includes several design updates to the&nbsp;Site Editor List View, bringing more consistency to the icon sizing and spacing, as well as&nbsp;new colors for hover, focus, and select states. The publishing UI has been updated to <a href=\"https://github.com/WordPress/gutenberg/pull/30231\">display the site icon and name</a>, adding a more personal touch to this flow while also making it more clear for full-screen or mobile users.</p>\n\n\n\n<img />Gutenberg 10.4 <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">release post</a>\n\n\n\n<p>More progress on site editing experiments includes the following notable updates:  </p>\n\n\n\n<ul><li>the ability to revert template customizations directly in the editor</li><li>many improvements to the Navigation block, including&nbsp;a&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/30403\" target=\"_blank\">new &ldquo;Post Format Link&rdquo; variation</a>, a&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/30281\" target=\"_blank\">clearer placeholder state</a>, and more style updates</li><li><a href=\"https://github.com/WordPress/gutenberg/pull/30521\">Better labeling</a> for differentiating &ldquo;Custom Styles&rdquo; vs global style changes in the site editor saving panel </li><li>New &ldquo;<a href=\"https://github.com/WordPress/gutenberg/pull/29839\">manage with live preview link</a>&rdquo; in the Widgets editor</li></ul>\n\n\n\n<p>The block editor still <a href=\"https://github.com/WordPress/gutenberg/issues/29976\">fails to deliver a consistent preview</a> of core blocks on the frontend in many cases. Version 10.4 brings greater parity between the editor/frontend with more consistent markup for archives, latest comments, quote, and separator blocks, with improved default padding to match the browser&rsquo;s default.  The GitHub <a href=\"https://github.com/WordPress/gutenberg/issues/29976\">issue</a> for this improvement contains a to-do list for additional blocks that need more polishing on previews, including search, paragraph, columns, embed, post title, and more.</p>\n\n\n\n<p>For a full list of all the enhancements and bug fixes, check out the <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">10.4 release post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Apr 2021 13:59:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:69:\"Gutenberg Times: Video: Full-Site Editing Overview with Anne McCarthy\";s:7:\"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=17545\";s:7:\"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:79:\"https://gutenbergtimes.com/video-full-site-editing-overview-with-anne-mccarthy/\";s: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:53595:\"<p>As part of the <a href=\"https://www.youtube.com/watch?v=c4IFn73Nzvk\">Meta Meetup on April 15th 2021</a>, Anne McCarthy gave a presentation on what Full-Site Editing entails, the updated scope of WordPress 5.8, what the FSE outreach program is and what issues surfaced during the four calls for testing from the group. </p>\n\n\n\n<p>It&#8217;s a fantastic and fast-paced presentation and covers a lot of ground. It&#8217;s ideal for WordPress users that just now want to catch up on all the buzz around Full&#8211;Site Editing and learn what will come to WordPress in the 5.8 release in July 2021. </p>\n\n\n\n<p>Big Thank You to Anne for allowing us to publish the video here with the transcript. </p>\n\n\n\n<p><em>For those interested how the template editor works,  <a href=\"https://youtu.be/c4IFn73Nzvk?t=2909\">jump right in to Marcus Kasmierczak&#8217;s live demo</a> portion of the WordPress Mega Meetup recording</em></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<h2 id=\"0-sha\">Shared Resources</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/about/roadmap/\">Roadmap showing phase 2</a>&nbsp;&nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/24551\">Full Site Editing Milestones</a>&nbsp;&nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/30662\">Special shoutout to the Gradual Adoption Milestone</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">Query Quest &#8211; Call for testing the Query Block</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Go/No go</a> &nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/29398\">Preview</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">FSE Outreach Program</a>:&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march\">High-level feedback from the Full Site Editing Program thus far</a></li><li><a href=\"https://critterverse.blog/2021/03/23/full-site-editor-404-test/\">404 design</a></li><li><a href=\"https://www.twitch.tv/mkaz7000\">Marcus Kazmierczak Streams on Twitch</a>  </li></ul>\n\n\n\n<p><em><a href=\"https://gutenbergtimes.com/feed/#transcript\">See transcript below</a></em></p>\n\n\n\n<div class=\"ngl-articles ngl-articles-50_50 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap\">\n	\n			<!--[if !mso]><\\!-->\n			<div class=\"ngl-article-left-mobile\">\n				<table border=\"0\" width=\"100%\" cellpadding=\"10\" 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/full-site-editing/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/02/vidar-nordli-mathisen-4NlLMwdFoLY-unsplash.jpg?w=640&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><span>Full-Site-Editing &#8211; the Ultimate Resource List</span></a></div><div class=\"ngl-article-excerpt\">Nothing in life is to be feared, it is only to be understood. Now is the time to understand more, so that we may fear less.&nbsp;— Marie Curie&nbsp;</div><div class=\"ngl-article-date\">18 Apr 2021</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			<!-- <![endif]-->\n\n			<div class=\"ngl-article ngl-article-img-left\">\n\n				\n				<div class=\"ngl-article-left\"><div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/02/vidar-nordli-mathisen-4NlLMwdFoLY-unsplash.jpg?w=640&ssl=1\" /></a></div></div><div class=\"ngl-article-right\"><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><span>Full-Site-Editing &#8211; the Ultimate Resource List</span></a></div><div class=\"ngl-article-excerpt\">Nothing in life is to be feared, it is only to be understood. Now is the time to understand more, so that we may fear less.&nbsp;— Marie Curie&nbsp;</div><div class=\"ngl-article-date\">18 Apr 2021</div></div>\n			</div>\n\n		\n			<!--[if !mso]><\\!-->\n			<div class=\"ngl-article-left-mobile\">\n				<table border=\"0\" width=\"100%\" cellpadding=\"10\" 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/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/03/kelly-sikkema-gcHFXsdcmJE-unsplash.jpg?w=640&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><span>Full-site Editing MVP: Can I Build a Landing Page?</span></a></div><div class=\"ngl-article-excerpt\">Josepha Haden Chomphosy was the featured guest on the inaugural episode of the WPTavern Jukebox podcast, hosted by Nathan Wrigley. Chomphosy explained her unofficial benchmark for the Go/NoGo decision on Full-site Editing for the WordPress core merge.&nbsp;</div><div class=\"ngl-article-date\">27 Mar 2021</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			<!-- <![endif]-->\n\n			<div class=\"ngl-article ngl-article-img-left\">\n\n				\n				<div class=\"ngl-article-left\"><div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/03/kelly-sikkema-gcHFXsdcmJE-unsplash.jpg?w=640&ssl=1\" /></a></div></div><div class=\"ngl-article-right\"><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><span>Full-site Editing MVP: Can I Build a Landing Page?</span></a></div><div class=\"ngl-article-excerpt\">Josepha Haden Chomphosy was the featured guest on the inaugural episode of the WPTavern Jukebox podcast, hosted by Nathan Wrigley. Chomphosy explained her unofficial benchmark for the Go/NoGo decision on Full-site Editing for the WordPress core merge.&nbsp;</div><div class=\"ngl-article-date\">27 Mar 2021</div></div>\n			</div>\n\n		\n		\n		</div>\n\n</div>\n\n\n<p class=\"has-large-font-size\" id=\"transcript\">Transcript </p>\n\n\n\n<div class=\"wp-block-group has-background\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-sha\">Shared Resources</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-strong-milestones-of-full-site-editing-experience-strong\">Milestones of Full-Site Editing Experience</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-strong-infrastructure-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Infrastructure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-browsing-templates-and-template-parts-strong\">Browsing Templates and Template Parts</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-styling-global-styles-theme-json-strong\">Styling &#8211; Global Styles + theme.json</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-20-theme-blocks-strong\">20+ Theme Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-query-block-the-loop-or-post-list-strong\">Query Block &#8211; The Loop or Post List</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-navigation-block-strong\">Navigation Block</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-gradual-adoption-widgets-customizer-hybrid-themes-nbsp-strong\">Gradual Adoption &#8211; Widgets, Customizer, Hybrid Themes&nbsp;</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-whats-coming-to-word-press-5-8-strong\">What&#8217;s coming to WordPress 5.8</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-short-demo-template-editing-navigation-block-and-multi-entity-saving-strong\">Short Demo: Template Editing, Navigation Block and Multi-Entity Saving</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-timeline-of-5-8-release-strong\">Timeline of 5.8 Release</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-what-is-the-fse-outreach-experiment-program-strong\">What is the FSE Outreach Experiment Program?</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-whats-the-goal-strong\">What&#8217;s the goal</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-why-was-it-started-strong\">Why was it started?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-how-to-join-fse-outreach-experiment-strong\">How to Join FSE Outreach Experiment</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-high-level-feedback-from-calls-for-testing-strong\">High-Level Feedback from Calls for Testing</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#16-strong-preview-content-strong\">Preview Content</a></li><li><a href=\"https://gutenbergtimes.com/feed/#17-strong-saving-process-strong\">Saving Process</a></li><li><a href=\"https://gutenbergtimes.com/feed/#18-distinction-between-editing-area\">Distinction between editing area.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#19-rethinking-width-and-alignment\">Rethinking Width and Alignment.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#20-strong-general-usability-improvements-strong\">General usability improvements.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#21-strong-improving-placeholders-strong\">Improving Placeholders.</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#22-strong-will-full-site-editing-take-over-my-site-strong\">Will full site editing take over my site?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#23-strong-what-about-the-block-based-navigation-and-widget-screens-strong\">What about the block-based navigation and widget screens?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#24-strong-site-builders-strong\">Site builders</a></li><li><a href=\"https://gutenbergtimes.com/feed/#25-strong-how-is-this-going-to-impact-themes-strong\">How is this going to impact themes?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#26-strong-what-pathways-are-going-to-be-created-strong\">What pathways are going to be created?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#27-strong-whats-the-best-way-to-prepare-nbsp-strong\">What&#8217;s the best way to prepare?&nbsp;</a></li><li><a href=\"https://gutenbergtimes.com/feed/#28-strong-stay-connected-with-anne-mc-carthy-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Stay connected with Anne McCarthy</a></li></ul></div>\n</div></div>\n\n\n\n<p class=\"has-small-font-size\"><em>Featured image: 404 template by Channing Ritter on critterverse.blog</em></p>\n\n\n\n<p>Howdy. To start, thanks so much for having me. This is a presentation about full site editing. I&#8217;m very excited to talk with you. This is a feature I&#8217;ve been thinking a lot about over the last year and I&#8217;m excited to share with you all. I&#8217;m also really keen to learn from each of you what you&#8217;re worried about, what you&#8217;re excited about, how you think full-site editing can improve your workflows, and more. So this is prerecorded because I wanted to make sure with so much information going around, wanted to make sure I had all the details lined up and so I could pause and rework certain sections. But please know that I welcome questions. So while you can&#8217;t interrupt me during the presentation, there will be a whole section at the end. Pull out your pen and paper, write them down, and know that they&#8217;re very, very welcomed. But for now, let&#8217;s dig in.</p>\n\n\n\n<p>So briefly about me, I&#8217;m actually originally from Winter Park, Florida. So I haven&#8217;t been home in about a year and a half, and thank you for letting me virtually return home by participating in this meetup. In 2011, I first found WordPress as a student at UNC Chapel Hill. I worked on their multi-site, had a great time. 2013, I went to my first ever WordCamp. 2014, joined Automatic as a happiness engineer focused on VaultPress and had a great time focusing on security of websites. It gave me a really interesting look into concerns people have about websites that most people don&#8217;t think about. Then 2020, I switched into the developer relations position at Automatic and have been there ever since.</p>\n\n\n\n<p>So let&#8217;s get meta and talk about the talk. (laughing). So to start, I&#8217;m going to zoom out really big and then slowly put pieces together until we kind of get a nice map of what full-site editing is with all the details. So this will look kind of like first answering some big, high-level questions, digging into then how the work is actually being done, so going from high level, &#8220;What is this? Why does it help me?&#8221; to &#8220;How is this work actually being approached? What are the pieces of the work that I need to know, the role of the outreach program?&#8221; Then I want to address some key topics and questions that I often get asked when I&#8217;ve presented at other places and talked on other podcasts about full-site editing or just one-on-one with people. I love to talk about full-site editing. So hopefully some of the key topics and questions can help get people thinking about other things they want to ask about.</p>\n\n\n\n<p>So let&#8217;s dig into the first big picture question. Why is this being done at all? Simply put, it&#8217;s to empower users. Rather than having a specific part of the site locked away in a theme or requiring a plugin, full-site editing will basically open it up to customize any part of your site the way you want to, or, on the flip side, you can let it be, or if you&#8217;re an agency, you could lock certain sites down or certain parts of a site down, depending upon how you want users to have access. So it&#8217;s a pretty powerful, big mission to actually deliver on full site editing.</p>\n\n\n\n<p>So I answered why is this being done. Now let&#8217;s dig into how does this fit into the WordPress roadmap? So full-site editing is a major part of phase two of the current roadmap. It&#8217;s not the only part, though. There&#8217;s actually other interrelated projects, including things like block patterns, the block directory, block-based themes. So it&#8217;s just one piece of this larger roadmap, but it&#8217;s one of the major grounding points of phase two of the roadmap.</p>\n\n\n\n<p>So what is full-site editing at a high level? Essentially, it&#8217;s a collection of features, and it&#8217;s important that you get the collection part. But it&#8217;s a collection of features that bring the familiar experience of blocks to all parts of your site, rather than just posts and pages. But Anne, what does a collection of features mean? Basically, I&#8217;ve noticed people tend to refer to full-site editing as one big thing. It&#8217;s like an on-off switch. It&#8217;s this monolith, and it&#8217;s actually not. It&#8217;s not this binary thing. It&#8217;s way better to talk about how there&#8217;s different pieces that fit together and interrelate, because it actually gives flexibility for release squads to release what&#8217;s ready, rather than all of it at once. So while it might be easier to talk about how it&#8217;s this one big thing, I encourage you all to kind of think about the different pieces, if you can, and I&#8217;ll touch on this more in a bit.</p>\n\n\n\n<p>Okay. So what does full-site editing actually allow me to do, right? So cool, Anne, a collection of features, but show me the money. (laughing). So this is an example of a 404 page. So a 404 page, typically you&#8217;re not actually able to edit, but with full-site editing, you could actually create this 404 page. This was actually done by one of the automatic designers, Channing. Shout-out to Channing. She did this as part of one of the tests for full-site editing, the outreach program. So it&#8217;s a pretty beautiful thing. While we all might not have the design chops that Channing does, it is pretty neat to see kind of a very tangible, hands-on example of what full-site editing unlocks you to be able to do.</p>\n\n\n\n<p>To get more specific, basically, if you&#8217;re a user, imagine editing the template that a specific post has for a specific category. For theme authors, you&#8217;ll be able to tap into design tools that allow you to focus more on actually creating a really compelling experience and less on getting the code in place and hacking things up. You can also out in and out of whatever you&#8217;re ready for, which is really exciting. But ideally, for theme authors, it&#8217;s going to be a huge change. It&#8217;ll allow creating themes to be much, much easier. If you&#8217;re an agency, you&#8217;ll have greater control over what you can offer clients, including setting custom brand colors with presets to locking down various aspects for consistency, such as typography or wanting only certain default colors to be used.</p>\n\n\n\n<h2 id=\"0-strong-milestones-of-full-site-editing-experience-strong\">Milestones of Full-Site Editing Experience</h2>\n\n\n\n<p>So how is this work being done? So rather than trying to go through everything in one go, this project has actually been broken down into seven different milestones. Some of these milestones are completely separate, their own thing. Some are very interrelated. Some mix and match in different ways. But we&#8217;re going to go through each of them so you can get a sense of how this is being done. I&#8217;m going to try to stay at a high level before going into a very brief demo midway through the presentation. But hopefully this&#8217;ll give you a sense of what this looks like.</p>\n\n\n\n<h3 id=\"1-strong-infrastructure-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Infrastructure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h3>\n\n\n\n<p>So milestone one, this was actually such a big milestone that it was broken into two parts. Essentially, this is all about laying the foundation, everything from multi-entity saving, which is actually being displayed here in the GIF that you see, where you can actually update multiple things at once, including a template part. You update your header, you update a post, and you update your footer. It&#8217;ll show all the changes happening and allow you to check and uncheck different boxes to save. Basically, just think about this as building the foundation of the experience, the technical foundation, unlocking things like being able to edit a template directly to working on specific blocks for full-site editing, like the site title. So we have a site title block, and it updates everywhere you have it listed.</p>\n\n\n\n<h3 id=\"2-strong-browsing-templates-and-template-parts-strong\">Browsing Templates and Template Parts</h3>\n\n\n\n<p>Milestone two, browsing. Again, there&#8217;s another little visual so you can see what this actually looks like. This is basically giving you a map and a GPS to know your location, how to get where you need to go for your site. So because there are these new parts of editing your site that are unlocked with full-site editing, like template editing and template parts, like a header or footer, there needs to be a way to navigate between them. So this milestone is dedicated to that. How can we make it as easy as possible for you to you get where you need to go?</p>\n\n\n\n<h3 id=\"3-strong-styling-global-styles-theme-json-strong\">Styling &#8211; Global Styles + theme.json</h3>\n\n\n\n<p>Milestone three, styling. So this actually covers a couple different layers. I&#8217;m going to break it down in this slide and then the next one to help give you a sense visually of what this looks like. But this includes everything from the technical requirements to make various levels work and the UI for users. So you can actually see a depiction of the future design for the UI that users will interact with in the imagery here. So there&#8217;s generally three layers, including selling for local blocks, theme defaults, and then global modifications or what we often call global styles. You can think of global styles as basically having the option to edit all aspects of your site. So if you want to set a typography that goes across your entire site, if you want to have certain colors for all H1 headers, you can set that up with global styles.</p>\n\n\n\n<p>Currently, much of the work has been focused on the technical underpinnings, especially around aspects like theme.json, which is a very key component for block themes and a really big tool for block theme authors. But for 5.8, the focus is generally going to be on merging the non-user interface parts of global styles. So don&#8217;t expect to interact with this system unless you&#8217;re a theme author. If you are a theme authro, get really excited. Here&#8217;s a little visual, just you can get a sense of it. So these are the different layers that have to interact in the styling system and hierarchy that needs to be thought of when working on this milestone.</p>\n\n\n\n<h3 id=\"4-strong-20-theme-blocks-strong\">20+ Theme Blocks</h3>\n\n\n\n<p>Milestone four, theme blocks. So because full-site editing opens up so many more aspects of the site to edit, new blocks had to be created, basically. So if you&#8217;re creating a new template for a specific category and you&#8217;re putting in post content and you want to add the post author block, which you can see here, you can quickly add it in, customize it to your liking, add in post comment, add in post data, remove the post date. You can edit each parts of these things, which pretty excited about this, is there&#8217;s actually 20-plus blocks that fall into this category. If all goes as planned, some of those will be released for 5.8 and available potentially for all sites. So even if you&#8217;re not using a block theme, you could have access to these theme blocks, which is pretty powerful and pretty cool.</p>\n\n\n\n<h3 id=\"5-strong-query-block-the-loop-or-post-list-strong\">Query Block &#8211; The Loop or Post List</h3>\n\n\n\n<p>Query block. So the query block has its own milestone, because it&#8217;s a pretty powerful block. It&#8217;s also meant to be a theme author tool, so in the long run, if you&#8217;re a user, imagine that you interact with what we call block variations, which basically are just different variations of a block, as the name implies. But imagine you want to add in your latest post. You&#8217;ll add the latest post block, but underneath it, what will be powering that experience of adding your latest post will be the query block. Essentially, as the name implies, it allows you to query posts and pages and display them in different arrangements on the page. I&#8217;m very excited, actually. In Gutenberg 10.5, which will be released in just about two weeks, there&#8217;s going to be some new patterns. You can see right here, large, medium, small are the current selection of patterns that you have for the query block. But pretty soon, there&#8217;s going to be a grid pattern and a couple other cool ones, which is pretty exciting. Generally speaking, though, if you&#8217;re an end user, don&#8217;t expect to interact with this. If you&#8217;re a theme author, get excited.</p>\n\n\n\n<h3 id=\"6-strong-navigation-block-strong\">Navigation Block</h3>\n\n\n\n<p>Navigation block. Again, this is just a single block, but don&#8217;t be fooled. It&#8217;s definitely a mighty one. So this last one is dedicated to all things navigation block, both in terms of structure and design. You can see in this little GIF I have going on, I&#8217;m just kind of making little design changes and moving things around so you can get a sense of what it&#8217;s like to interact with this block. This milestone actually includes everything from how do you build a really simple menu with a few items to thinking about how to create a really large mega menu and add in new blocks, like the search block that you can see here. We&#8217;re even adding sub-menus, different designs, different layouts, and more.</p>\n\n\n\n<h3 id=\"7-strong-gradual-adoption-widgets-customizer-hybrid-themes-nbsp-strong\">Gradual Adoption &#8211; Widgets, Customizer, Hybrid Themes&nbsp;</h3>\n\n\n\n<p>So the last piece of the milestones is the gradual adoption. I hope this GIF makes you laugh, but also seriously, this is the intent, is we slowly want people to be able to adapt in the way that they can. Once more of these pieces are completed, there&#8217;s basically a ton of room to start exploring how adoption might look like for those who can&#8217;t or don&#8217;t want to restructure a full theme. So this might be an intermix of block-based things and regular PHP templates, or it might be covered by projects like the block-based widget editor and the navigation screen. Both of those projects I&#8217;ll cover later, but for now, just keep in mind that this is intentionally a milestone. We want to allow for gradual adoption and want people to have lots of pathways in to taking advantage of full site editing.</p>\n\n\n\n<h2 id=\"8-strong-whats-coming-to-word-press-5-8-strong\">What&#8217;s coming to WordPress 5.8</h2>\n\n\n\n<p>So what&#8217;s coming to WordPress 5.8? So just last week, a post went out from Josepha, who is the executive director of the WordPress project. I want to read a quote from it just to kind of set the tone and give you a sense. So full-site editing is a collection of projects, and together, they represent a big change, arguably too much for a single release. The most important context to share is that it isn&#8217;t shipping as the full default experience for users. One of the clearest pieces of feedback from the phase one merge process was that there wasn&#8217;t enough time for extenders, agencies, theme authors, plugin developers, site builders, et cetera to prepare for the upcoming changes. With that in mind, this merge process won&#8217;t be an on-off switch, and you can see I&#8217;ve bolded various specific parts that I hope you take home with you.</p>\n\n\n\n<p>All right. So let&#8217;s talk WordPress 5.8 plans. This is up-to-date information as of today. A post was released from Josepha on [inaudible 00:12:21], if you&#8217;d like to check it out. From the call that the project leadership had, this is what they came up with for the 5.8 plans. This includes improvements from Gutenberg 9.9 and beyond. So we always package different versions of Gutenberg into major releases. This release is no different. There&#8217;ll be an introduction of new blocks, including query, site logo, navigation, et cetera. These are each very powerful blocks, very exciting to see. theme.json mechanism, this is part of what allows block themes to use different global styling, which will be very cool for block authors to get their hands on.</p>\n\n\n\n<p>The template editor for pages and a blank template, I&#8217;ll actually be showing a demo of this in a moment. So hang tight there, but it&#8217;ll all make sense in a bit. The widget screen and block widgets in the customizer, this is basically work being done to bring blocks to the widgets experience. I will talk more about that later, about how it&#8217;s a stepping stone towards full-site editing. Then finally, design tools, so even more design tools that people can hook into, including duotone, which adds a really cool color filter, layout controls, padding, and more.</p>\n\n\n\n<h3 id=\"9-strong-short-demo-template-editing-navigation-block-and-multi-entity-saving-strong\">Short Demo: Template Editing, Navigation Block and Multi-Entity Saving</h3>\n\n\n\n<p>So at this point, let&#8217;s pause for a minute and actually show off one of the features that is aimed to be included in 5.8.&nbsp;</p>\n\n\n\n<p>I&#8217;m going to show you template editing, the navigation block, and just some of the cool flows with multi-entity saving is one of the things that we talked about that will make it into this release. So I&#8217;m in the post editor. I have a new post. I love to blog and write and present. I hit Update. Super happy, whatever. Open up the post settings, and there&#8217;s this new section that allows you to both create a brand new template. This will ideally be used both in themes that are block-based themes, so they&#8217;re ready for full-site editing, and potentially for classic themes. There&#8217;s actually work underway so that this will be available in anything being used in WordPress right now.</p>\n\n\n\n<p>So right now, if I hit Edit, this will take me into the template that this post is using. So let&#8217;s do that now. So as you can see, this drops me into what looks like the entire site. So you can see I have my header up here, I have the footer down here, and I can make changes directly to them. So, for example, if I jump in here, this is the navigation block, and I haven&#8217;t yet set it up. So I can say add all pages, and I can start empty. In this case, I&#8217;ll say, &#8220;You know what? Let&#8217;s start empty.&#8221; Let&#8217;s say I want to add a custom link. One of the cool things you can actually do, you can quickly select from here, or let&#8217;s say I want to add a new post. Let me first select post link.</p>\n\n\n\n<p>So adventures around the world. Let&#8217;s pretend I&#8217;m just inspired where I&#8217;m writing this. I can actually create a draft post, which is pretty cool, and it&#8217;ll show up here. It will not show up on the front end, since it&#8217;s a draft, but it actually creates a page draft for this with this title automatically. So let&#8217;s say I&#8217;m scrolling through here. I&#8217;m going, &#8220;Oh, this looks pretty good. Actually, I kind of want to see what it looks like if I add an image to the post here.&#8221; Pull up an image block. Oh, my media library. Hammocks. Can&#8217;t get enough hammocks. Going to throw that in there. Great. So at this point, I&#8217;ve made changes to the actual header. I&#8217;ve made changes to the post. I&#8217;m just going to apply and see what happens.</p>\n\n\n\n<p>So this is the multi-entity saving that I mentioned earlier. Now, as you can see, it has a section for posts, so it&#8217;s saying, &#8220;Hey, you edited this post,&#8221; and it has a section saying, &#8220;Hey, you edited the header.&#8221; So at this point, I&#8217;m going to hit Save, because I want both those changes to propagate. Now I&#8217;m back into my post, into the writing flow, and I can easily switch back and forth. I can also select a new one. But yeah, hopefully this gives you a good sense of one of the key parts that&#8217;s being worked on for inclusion in 5.8. There will be a demo later, but this is just a taste.</p>\n\n\n\n<h2 id=\"10-strong-timeline-of-5-8-release-strong\">Timeline of 5.8 Release</h2>\n\n\n\n<p>To help set the stage for what you can prepare for, here are some upcoming dates to keep in mind. If you&#8217;re like me, time is moving really strangely, so I like to have dates to kind of anchor me. Feel free to take a screenshot of this or write it down if you&#8217;d like. So April 13th and April 27th, these are the go and no-go decision dates. So right now, project leadership actually has gathered. So you might notice if you are good with dates and good with time right now, April 13th has come and gone. So this date has passed, and project leadership has met actually to go through different FSE-related features and projects to figure out what might be ready for 5.8. I would expect to see more high-level posts throughout the month, especially after the second date, the April 27th date. That&#8217;s when final decisions will be made around 5.8.</p>\n\n\n\n<p>Then if all goes well, the beta period for WordPress 5.8 will start on June 8th. So people can actually start getting their hands on the tools that are going to be in place in the actual release and testing it and finding bugs and improving things from there. July 20th is the actual date of WordPress 5.8 and when it&#8217;s released. This is being considered as an open beta, where theme authors, plugin authors, agencies, and more can dig into the tools that are being offered and that I went over previously. Then in December 2021, that&#8217;s around the time when WordPress 5.9 will be released, and this is when I expect to move from tools for extenders into tools actually for users and more user-facing interactions with full-site editing and having things unlocked in the interface that previously in 5.8, most users won&#8217;t notice and won&#8217;t interact with. In 5.9, I expect that to be more visible.</p>\n\n\n\n<p>So some key takeaways. I know this is a lot of information. So only what&#8217;s ready from the various milestones will be shipped. This is not an on-off switch, and it won&#8217;t take over your site. The focus right now is on giving tools to extenders first, before user-facing changes. That&#8217;s a big lesson that was learned from the 5.0 merge, where Gutenberg and the core editor was brought into the WordPress experience. This is something that, thankfully, we&#8217;re in a position where because of these interrelated projects, we&#8217;re able to move in a more flexible and adaptable way to release what&#8217;s ready and not anything else.</p>\n\n\n\n<h2 id=\"11-strong-what-is-the-fse-outreach-experiment-program-strong\">What is the FSE Outreach Experiment Program?</h2>\n\n\n\n<p>All right. At this point, let&#8217;s jump into the full-site editing outreach program. As a reminder, this is the program that I actually run, so consider this free rein to ask me whatever question you&#8217;d like, because I think probably too much about this program. But it&#8217;s something I&#8217;m really excited to talk to you about, and I think it&#8217;s a really neat vehicle for both feedback and education about full site editing.</p>\n\n\n\n<p>So let&#8217;s go over some big picture questions, kind of like we did earlier on, and just get the details of the way. So let&#8217;s start. What is it? So essentially, it&#8217;s just a program focused on full-site editing. It&#8217;s in the form of a Slack channel right now. I&#8217;ll go over how to join it in a bit. But it has curated calls for testing, summary posts of the feedback that we get, and various educational opportunities that you can hop in on, mainly in the form of live streams. I&#8217;m running some hallway hangouts, which are basically just Zoom calls. People can come in, and we can talk about full site editing.</p>\n\n\n\n<h3 id=\"12-strong-whats-the-goal-strong\">What&#8217;s the goal</h3>\n\n\n\n<p>What&#8217;s the goal? So the goal is pretty simple, help improve full-site editing experience by gathering feedback from WordPress site builders. While the group originally started solely to be about feedback, there&#8217;s actually this really neat educational component that has come up as the feature has developed and as more people have gotten curious about it. So people can join just to build their own awareness about what&#8217;s happening with full-site editing and kind of just look at a glance or just help amplify the posts that are coming through.</p>\n\n\n\n<h3 id=\"13-strong-why-was-it-started-strong\">Why was it started?</h3>\n\n\n\n<p>Why was it started? So I&#8217;m going to quote Josepha from the kickoff post. During the WordPress 5.0 retrospective, which is when Gutenberg was merged and the core editor was merged, one of the things that came up routinely was the need for better engagement with users. It was generally agreed from all levels and area of contribution that users would be most impacted by Gutenberg, but the users were also the group we had the least channels of communication to. To help get user feedback to WordPress developers a little bit more seamlessly, I&#8217;m going to try and experiment outreach program. So basically, this is a lesson that was learned from the 5.0 release. In order to prevent another situation where people are caught by surprise, this program is in place to help people get excited and on ramped and on boarded onto full-site editing, as well as getting feedback so that we know if a major workflow change is coming into play, we can actually get user feedback to make it a little bit easier.</p>\n\n\n\n<h3 id=\"14-strong-how-to-join-fse-outreach-experiment-strong\">How to Join FSE Outreach Experiment</h3>\n\n\n\n<p>All right. At this point, I bet you&#8217;re just so stoked. You&#8217;re ready to dive in. Awesome. (laughing). All you&#8217;ve got to do is join FSE Outreach Experiment in Make WordPress Slack, and then you&#8217;re all set. You&#8217;ll just get a bunch of annoying pings for me with prompts for how to test, interesting posts related to full site editing, and more. I promise it&#8217;s also not as scary as this dive, which looks absolutely terrifying, but also beautiful.</p>\n\n\n\n<h2 id=\"15-strong-high-level-feedback-from-calls-for-testing-strong\">High-Level Feedback from Calls for Testing</h2>\n\n\n\n<p>So because at this point, we&#8217;re on our fifth call for testing, I want to go over some high-level pieces of feedback that we&#8217;ve actually gotten about the experience so far. Basically, across all the calls for testing, these are repeated themes that have come up. But keep in mind that because there are certain aspects that we actually haven&#8217;t tested, so global styles, for example, the UI isn&#8217;t available really for users, and it&#8217;s not refined for users, so it&#8217;s not something that we&#8217;ve had as a focus part of testing, even though there is a UI that is available. So certain things are left out purely because they aren&#8217;t necessarily ready for testing, but these are the top pieces of feedback. So bear with me.</p>\n\n\n\n<h3 id=\"16-strong-preview-content-strong\">Preview Content</h3>\n\n\n\n<p>Previewing content. Publish a post. You want to go preview it, or you&#8217;re editing a post. You want to go preview the content. The same thing is true with full site editing. This is a big thing that kept coming up. My question is, is this a necessary workflow, or is it a symptom of other problems? Because in general, the site editor should be as WYSIWYG, as what you see is what you get, as possible.</p>\n\n\n\n<p>So if you&#8217;re making a change, it should look exactly the same as the front end of your site, and because it doesn&#8217;t right now, it&#8217;s causing this tension. There actually is a preview site option under discussion, as well as a browse mode option, which basically, if you&#8217;re actually editing your site, it would turn off everything that wouldn&#8217;t actually show up on the front end. So if you only have one page of posts, but you have pagination set up so if you had multiple pages, that would actually go away. So as you can imagine, this is currently up for discussion, but there actually are a couple different pathways to try and address this problem. But it&#8217;s a very important one to address.</p>\n\n\n\n<h3 id=\"17-strong-saving-process-strong\">Saving Process</h3>\n\n\n\n<p>Saving process. I like to say it&#8217;s technically reliable, but not yet delightful. So basically, it&#8217;s left a lot to be desired right now, and it&#8217;s resulted in a fair bit of confusion. There&#8217;s a lot of feature requests and enhancements and bugs that have come up related to saving. This is likely because the multi-entity saving aspect that I demoed earlier is very new for WordPress users. It&#8217;s not something we&#8217;re used to having as part of our workflow. So it&#8217;s something that inherently needs some work on. So whether it was people requesting more granular saving options to show specifically what was being changed to issues with saving for screen readers to confusion around even just what the general parts mean, like what you&#8217;re actually selecting or unselecting, This was definitely a big, big area of feedback.</p>\n\n\n\n<h3 id=\"18-distinction-between-editing-area\">Distinction between editing area.</h3>\n\n\n\n<p>Distinction between editing area. So basically, because you can edit all parts of your site, it&#8217;s hard to know, &#8220;Am I editing the header for all of my site, or am I editing just a specific piece of content on a post?&#8221; This kind of distinction, jumping between different levels of, &#8220;Oh, you&#8217;re changing this. This will change everything&#8221; to &#8220;You&#8217;re just changing this one thing in this one spot&#8221; is pretty tricky. Right now, there&#8217;s not a lot of friction, and there&#8217;s not a lot clarity in the actual experience to show when you&#8217;re actually jumping between those different levels. So this was a big piece that&#8217;s come up, and it&#8217;s something that is an active area of iteration and exploration to kind of get the right amount of friction in place.</p>\n\n\n\n<h3 id=\"19-rethinking-width-and-alignment\">Rethinking Width and Alignment.</h3>\n\n\n\n<p>So rethinking width and alignment. Previously, alignment in full-site editing worked to optimize how traditional things worked, where basically, traditional things provided their own alignment styles. This worked okay for the project up until this point. But recently, work has been shipped to reimagine how this dynamic should work to allow for actually more control over alignments when using the site editor. This should actually help make sure that whether you want something that&#8217;s full width or you want to change the actual width of your content that&#8217;s showing up that it&#8217;ll actually be what you see is what you get. Right now, this is another piece of feedback at a high level that&#8217;s impacted what you see is what you get experience.</p>\n\n\n\n<h3 id=\"20-strong-general-usability-improvements-strong\">General usability improvements.</h3>\n\n\n\n<p>Generally usability improvements. I admit this is totally a catchall, and it covers a ton of stuff, but it&#8217;s actually a very important one to think of, because it&#8217;ll actually move the site editing experience from being just functional to actually delightful, which is really exciting. There&#8217;s a ton of issues that are included in this, including some enhancement requests, bug reports, all that good stuff. One of my favorites to talk about is creating a background image on a template part. So imagine you have a header. You&#8217;re working on it. You&#8217;re super excited, and you&#8217;re almost done. Then you&#8217;re like, &#8220;Oh, do you what would be really cool is if I had mountains in the background. Maybe I&#8217;ll add a cover block in the background and add an image and set the opacity pretty low, but have mountains going in the background of the site.&#8221; That&#8217;s really hard to do.(laughing). You basically would have to delete everything and add the block in and then add everything back. So those are the kinds of experiences that we&#8217;re trying to improve right now.</p>\n\n\n\n<h3 id=\"21-strong-improving-placeholders-strong\">Improving Placeholders.</h3>\n\n\n\n<p>Improving placeholders. So placeholders, especially for some of the newer blocks, are a powerful way to both guide people and a current point of confusion. So you probably saw this with the navigation block earlier, where it had those little grayed boxes. It&#8217;s like, &#8220;How do we explain to people, &#8216;Hey, this is something you have to set up and engage with, but here&#8217;s generally what it will look like and what it will do&#8217;?&#8221;&nbsp;</p>\n\n\n\n<p>The feedback for this mainly came into play with the query block, social icon block, featured image block, and the navigation block. Each currently actually also get users started in different ways. So not only are there different placeholders for different experiences, the actual experience of interacting with the placeholders are all pretty inconsistent right now. So I think in the long run, it seems that users will benefit a bunch from a standardized, consistent way to interact with placeholder content so that it becomes a really familiar interaction when you&#8217;re working with a more powerful block. This especially is true for the query block and navigation block.</p>\n\n\n\n<p>Okay, now that we&#8217;ve covered the milestones, the outreach program, high-level pieces of feedback, I&#8217;m going to quickly run through some key topics that I imagine you&#8217;re going to have questions about. Just because I cover them here does not mean I don&#8217;t want to answer questions, so please don&#8217;t see this as a sign that you can&#8217;t also still ask questions about these topics. This is just what I&#8217;ve been hearing from folks.</p>\n\n\n\n<h2 id=\"22-strong-will-full-site-editing-take-over-my-site-strong\">Will full site editing take over my site?</h2>\n\n\n\n<p>Hopefully by this point, you all can say no in a resounding way. But no, this is not something that&#8217;s going to all of a sudden, on-off switch, you upgrade to 5.8, it takes everything over. Not at all. You very much have to opt into it through using a theme blocking that supports, actually, these features. In time, more pathways are going to be built as well so that when you&#8217;re actually using full-site editing, you&#8217;ll likely be using pieces in all of it. So you could just be using the query block, or you could just be using global styles without it taking over your entire site.</p>\n\n\n\n<h2 id=\"23-strong-what-about-the-block-based-navigation-and-widget-screens-strong\">What about the block-based navigation and widget screens?</h2>\n\n\n\n<p>What&#8217;s the deal there? So in case you missed it, there&#8217;s actually two additional projects that are dedicated to bringing blocks to more areas of the site outside of full site, I think. This include the navigation screens. You can build out menus and the widget screens. You can build out your widget sections, and this is pretty powerful and high-impact work. They are both separate projects that are tangential to full-site editing, but you can think of them as stepping stones, basically. So you could have a theme that is a classic theme, but it uses a block-based widget screen so that people can have the power blocks with their widgets. Essentially, the whole point, like I said, it&#8217;s a stepping stone to get people used to using blocks more places.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<h2 id=\"24-strong-site-builders-strong\">Site builders</h2>\n\n\n\n<p>I could write a thesis about this, because there&#8217;s so much to talk about here. I imagine I&#8217;m going to get questions about this, but essentially, full-site editing is being built partially so people don&#8217;t get stuck or locked into one site builder or another. It&#8217;s also being built in a way that site builders can actually hook into what&#8217;s being created if they choose to. I&#8217;ve heard from a lot of folks, though, that they expect full-site editing to actually fully replicate their favorite site builder&#8217;s functionality, and I&#8217;m here to say that while the goals between full-site editing and site builders are pretty similar in terms of empowering users and giving better tools to customize a site, the difference is that we&#8217;re building for 40% of the Internet, and we&#8217;re building even for site builders, where site builders have a much more targeted approach.</p>\n\n\n\n<p>In the future, I do think there will always be room for specific takes of how to have an ideal site editing experience, whether that&#8217;s geared to a specific group, like a marketing style approach, or if you want to have things locked down or if you want to have things opened up. But generally speaking, full-site editing is meant to actually expand the way WordPress as a whole uses blocks, so don&#8217;t expect it to fully replicate any sort of site builder, your favorite site builder, essentially.</p>\n\n\n\n<h2 id=\"25-strong-how-is-this-going-to-impact-themes-strong\">How is this going to impact themes?</h2>\n\n\n\n<p>How is this going to impact themes? So in the long run, this should actually make theme development much easier. I think Marcus&#8217;s demonstration later will show that, and much simpler, especially with the design tools that will be essentially ready at your fingertips to tap into. Ideally, because of what&#8217;s being released, it should allow theme authors to focus less on coding and functions and more on design aesthetics, integrating block patterns, and all that good stuff. But because one of the key things I wanted to really drive home in this section, though, is that because full-site editing requires a block-based theme or a theme with certain functionality enabled, this makes theming extremely important to get right. So I&#8217;ve heard people say like, &#8220;Oh, themes are a thing of the past.&#8221; It&#8217;s very much not true. I&#8217;d actually argue the opposite, that theme is almost key to this experience, to having it be delightful and having it makes sense.</p>\n\n\n\n<h2 id=\"26-strong-what-pathways-are-going-to-be-created-strong\">What pathways are going to be created?</h2>\n\n\n\n<p>I know I&#8217;ve talked a lot about pathways this entire time, but it is the entire focus of the final month milestone for full-site editing. So expect a lot of pathways. For now, this includes everything from having a classic theme that can take advantage of global styles to template editing or a block-based widget screen. This also includes things like allowing certain full-site editing, really, blocks to be available for users, regardless of if they&#8217;re using a classic theme or a block theme or enabling the ability to edit block templates directly, kind of like I showed in the demo earlier. So there&#8217;s going to be a ton of options here, and I&#8217;m actually really excited to see what happens once 5.8 kind of sparks the creativity of the community, because I imagine both that people will create their own pathways and start experimenting, and we&#8217;ll also get a very clear sense of, &#8220;Hey, I actually really need X, Y, and Z pathway.&#8221; We&#8217;ll get a sense of demand from the community of core, which is super exciting to have.</p>\n\n\n\n<h2 id=\"27-strong-whats-the-best-way-to-prepare-nbsp-strong\">What&#8217;s the best way to prepare?&nbsp;</h2>\n\n\n\n<p>So this depends on who you are. (laughing). So depending on whoever you are, at a high level, this is what I recommend. Join the FSE Outreach Program. I know this is the thing that I run. I&#8217;m very biased. But seriously, join it. I think it&#8217;s really, really helpful to get a sense both of feedback, what&#8217;s being currently iterated on, and just general education opportunities. If you&#8217;re a theme author, I really recommend checking out the theme experiments repo and joining the block-based theme meetings to learn about the latest and greatest, because lots of good information is shared there. In general, too, it&#8217;s often also helpful to join the weekly core editor meetings, because there&#8217;s regular updates about the projects and PRs people working on. Finally, pay attention to upcoming content on Learn WordPress, because I think there&#8217;s going to be a ton of stuff coming up about full-site editing, depending upon what&#8217;s scoped for 5.8 and 5.9, including building a block-based theme, for example. That will really help, I think, everyone level up.</p>\n\n\n\n<h2 id=\"28-strong-stay-connected-with-anne-mc-carthy-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Stay connected with Anne McCarthy</h2>\n\n\n\n<p>All right. So we&#8217;re at the very end. At this point, if you want to stay connected with me or you have follow-up questions after this talk, I very much welcome them. You can find me on WordPress or on Slack @annezazu, or you can reach me at my site, nomad.blog. I will also try and drop my automatic email address separately. I just won&#8217;t on a live presentation, in case you want to follow up directly via email. I&#8217;m not on Twitter. I&#8217;m not on Facebook. I&#8217;m on and off of Instagram. So please don&#8217;t try to contact me those ways.</p>\n\n\n\n<p>Finally, I just want to say thanks so much for your time. Let&#8217;s hear your questions at this point. I&#8217;m really excited to hear what you all are thinking and curious about. I do want to say I don&#8217;t know everything, but I can find anything, and I&#8217;ve talked with David about how he can follow up after this presentation to get you all information and answers that you all want to questions that I might not be able to answer. So at this point, I&#8217;m going to pass it off to live and current Anne and give a high-five from past Anne.</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, 16 Apr 2021 18:21: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: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:67:\"WPTavern: Enō: ‘Probably This Is the Best Blogging Theme Ever’\";s:7:\"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=115149\";s:7:\"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:163:\"https://wptavern.com/eno-probably-this-is-the-best-blogging-theme-ever?utm_source=rss&utm_medium=rss&utm_campaign=eno-probably-this-is-the-best-blogging-theme-ever\";s: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:4460:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Sometimes a theme&rsquo;s description is so moving that one must install, activate, and test the project. I often rail against the obviously keyword-stuffed text in the free WordPress theme directory. But, I am pleasantly surprised from time to time.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>En&#333; is an elegant, modern and functional WordPress theme. Probably this is the best blogging theme ever. Just see the demo at&hellip;It supports Gutenberg block editor and has a lot of Customizer options&hellip;</p></blockquote>\n\n\n\n<p>Thus began my journey into <a href=\"https://webminimalism.com/blog/eno-wordpress-theme/\">En&#333;</a>, an upcoming theme by Ivan Fonin. I could have been partially a language-barrier thing. Or, the author could have just been having a bit of fun. Nevertheless, it was the sort of description that stood out enough to pull into my test environment. Any blogging theme claiming the title of &ldquo;the best&rdquo; was at least worth a look.</p>\n\n\n\n<p>What I found was a well-designed theme that focused on some of those timeless elements, such as generous use of whitespace and sound typography. I would not go so far as crowning it the best ever created, but it will undoubtedly be the perfect fit for many bloggers in the future.</p>\n\n\n\n<p>Currently, the theme is awaiting a review before it lands in the official WordPress theme directory. However, those who want to try it out early can snag a copy of the ZIP file from its <a href=\"https://themes.trac.wordpress.org/ticket/97585\">Trac ticket</a>.</p>\n\n\n\n<p>En&#333; tackles the intricacies of block editor design like a pro. In areas where so many &ldquo;block-ready&rdquo; themes fail to live up to expectations, it is a textbook example of working alongside the block system.</p>\n\n\n\n<p>Where it falls short is that it does not go beyond nailing down the basics of block design. The theme bundles no patterns, which would allow users to quickly drop in more advanced layouts. It also does not include block styles or even a custom color palette. There are no unique elements in the design where the author stamps his own signature in bold. It is almost formulaic, but that is not necessarily a bad thing. Formula can feel good. It can be comforting when you need something that simply gets out of the way and allows your content to shine.</p>\n\n\n\n<p>While Fonin bills the project as a blogging theme, it stands out as a solid option for photographers. The open-canvas layout leaves ample room for large images and galleries, and the <a href=\"https://demo.webminimalism.com/eno/\">theme&rsquo;s demo</a> is filled with examples.</p>\n\n\n\n<img />Gallery examples from the  En&#333; theme.\n\n\n\n<p>What would make this theme even better would be a few image and gallery styles, allowing end-users to spruce up their blocks a little more.</p>\n\n\n\n<p>As much as I like the theme, it does tick one of the boxes from my most-irritating-things-that-themes-do checklist. It outputs the featured image on single post views above the post content. This creates the dreaded double-image issue when a user also uses the same image in the post itself. The easy fix for this is to provide a theme option for not showing the featured image on single posts.</p>\n\n\n\n<img />No customizer option to disable post featured image on single views.\n\n\n\n<p>It is a surprise that the theme does not have this option because it allows users to enable or disable nearly everything possible outside of the post content. It has three different areas where metadata can be shown: before the post title, after the title, and after the content. Users can pick and choose what appears where via a series of checkboxes. The approach is convoluted at best and is a good representation of why we need the site editor. This is not so much the fault of the theme as it is a limitation of the customizer. Instead of ticking and unticking boxes, users could simply move blocks around to their desired location.</p>\n\n\n\n<p>The comments are broken in the theme at the moment. Each comment&rsquo;s text is outputting a simple comma instead of the content. I am sure this will come up in the theme review and be addressed before it goes live.</p>\n\n\n\n<p>For users looking for a minimalist, block-ready theme, this will be a solid option once it makes it through the review process. I look forward to the day when themes like En&#333; are the baseline when designing for the block system.</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, 16 Apr 2021 17:20: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:14:\"Justin Tadlock\";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:66:\"WPTavern: Full Site Editing Is Partly a ‘Go’ for WordPress 5.8\";s:7:\"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=115193\";s:7:\"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:165:\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8?utm_source=rss&utm_medium=rss&utm_campaign=full-site-editing-is-partly-a-go-for-wordpress-5-8\";s: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:6930:\"<p class=\"has-drop-cap\">Today, Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">announced the results</a> of yesterday&rsquo;s &ldquo;go/no-go&rdquo; demo and decision on <a href=\"https://wptavern.com/will-full-site-editing-land-in-wordpress-5-8-a-decision-is-forthcoming\">whether Full Site Editing (FSE) would land in WordPress 5.8</a>. The site editor and global styles are not landing in the next release. However, several other features should launch and allow users to build their sites with blocks in new ways.</p>\n\n\n\n<p>The following people attended the demo:</p>\n\n\n\n<ul><li>Mat&iacute;as Ventura &ndash; Demo Host and Gutenberg Project Lead</li><li>Matt Mullenweg &ndash; WordPress Project Lead</li><li>Helen Hou-Sand&iacute; &ndash; Lead Developer</li><li>Josepha Haden Chomphosy &ndash; Executive Director</li><li>H&eacute;ctor Prieto &ndash; Technical Project Manager</li><li>Chlo&eacute; Bringmann &ndash; Assisting with administrative and operational logistics</li></ul>\n\n\n\n<p>Ventura walked the group through the various FSE features that could be ready for WordPress 5.8, taking questions and discussing along the way. There was also a discussion afterward that focused on ideas beyond the next release.</p>\n\n\n\n<p>The following FSE-related features are expected to ship:</p>\n\n\n\n<ul><li>Improvements from Gutenberg 9.9+.</li><li>New theme-related blocks like Query, Site Logo, Navigation, and more.</li><li><code>theme.json</code> integration, which allows themes to define block defaults and settings.</li><li>Template-editing mode for the block editor.</li><li>Block-based widgets screen and customizer integration.</li><li>New block design tools, such as duotone (SVG filters for images), layout controls, padding, and more.</li></ul>\n\n\n\n<p>&ldquo;Not all of the above are currently ready but there&rsquo;s some level of confidence that they can be by the time of 5.8,&rdquo; noted Haden Chomphosy in the post.</p>\n\n\n\n<p>This list feels like a solid compromise between launching some of the more polished FSE features and trying to force in those that are probably out of reach for a July 2021 release. The features also provide current users access to new block tools without activating a block-based theme.</p>\n\n\n\n<p>The group focused on the Query block for much of the early discussion. The Gutenberg development team will likely change the block&rsquo;s user-facing name to something less confusing. It also needs a bit more polishing to make things more user-friendly.  I am interested in seeing how theme authors use this in conjunction with patterns once this launches.</p>\n\n\n\n<p>One other feature that users should look forward to is the <a href=\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory\">pattern directory</a>. While it is not ready for integration into the WordPress admin UI, it does not need to be. Users will be able to copy patterns from the directory and paste them directly into their editor. In time, it should become a part of the built-in experience.</p>\n\n\n\n<p>The group seems to have made a good call on which features to include. It is easy to want to push forward and get everything into the hands of users. It can be tougher to pull back and compromise.</p>\n\n\n\n<p>Full video of the demo:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>I had two takeaways that stood out to me more than anything in the meeting.</p>\n\n\n\n<h2>Takeaway #1: Page Template Editor</h2>\n\n\n\n<p class=\"has-drop-cap\">In WordPress 5.8, users should gain access to the <a href=\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\">template editor</a>. On the page-editing screen, it allows users to switch out of content-editing mode. From there, they can work on the overall template. Essentially, for this release, it would serve as a landing page builder.</p>\n\n\n\n<p>This is a sort of middle ground between just the block editor and the eventual site editor. I like this route because it does not overwhelm end-users with a complete site-editing experience at once. It is a helping hand, a transition from the current phase to the next, allowing users to familiarize themselves with more advanced tools.</p>\n\n\n\n<p>The template editor will work for all users too. They will not be required to run a block-based theme to access it. Because each template would be a one-off use case, WordPress can serve this up without theme authors opting into it.</p>\n\n\n\n<p>Many block-ready themes have already been including an &ldquo;open canvas&rdquo; type of template. This would remove the need for those unless also including it for third-party builders. It would also solve the portability issue when users switch from a theme that bundles the template and one that does not.</p>\n\n\n\n<h2>Takeaway #2: Many Block-Based Themes</h2>\n\n\n\n<p class=\"has-drop-cap\">At the end of the discussion, the group was more or less spitballing some ideas beyond version 5.8. In particular, Hou-Sand&iacute; shared a vision of what theme development for the official directory could look like in the era of FSE.</p>\n\n\n\n<p>&ldquo;Because the full site editing, like from a user-facing point of view, is not about page building all the time,&rdquo; she said. &ldquo;It&rsquo;s about tweaking what&rsquo;s there. Yeah. So I feel like the correct thing for core to do in terms of bundled themes is actually a bunch of small bundled themes.&rdquo;</p>\n\n\n\n<p>I have previously written about how work on <a href=\"https://wptavern.com/work-on-the-twenty-twenty-two-default-wordpress-theme-should-already-be-underway\">Twenty Twenty-Two should already be underway</a> instead of waiting until the last moment to piece a new default theme together for the end-of-the-year launch. The yearly default theme system has served the community well for over a decade now. I am already warming to the idea of turning it on its head and forging a new path.</p>\n\n\n\n<p>With FSE, developers do not necessarily have to follow all of the rules of traditional themes. Themes like Kjell Reigstad&rsquo;s <a href=\"https://wptavern.com/carrd-like-theme-experiment-provides-a-glimpse-into-the-future-of-theming\">Carrd-like, two-column landing page theme</a> would be well-suited to such an experiment. Smaller, more experimental projects like this could replace the old Twenty* theme system with something new or even complement it.</p>\n\n\n\n<p>Hou-Sand&iacute; also threw out a few ideas around building block-based themes via a library of CC0 images, the patterns directory, and copying/pasting things from WordPress.org. She likened it to the CSS Zen Garden era. It could even open the possibility of bypassing the theme review process since everything would be pre-vetted.</p>\n\n\n\n<p>But, these are thoughts for tomorrow. For now, we are at least getting some initial FSE components.</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, 15 Apr 2021 21:54:15 +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:\"Justin Tadlock\";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:\"WPTavern: Zerodium Temporarily Triples Payout to $300K for WordPress Exploits\";s:7:\"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=115080\";s:7:\"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:197:\"https://wptavern.com/zerodium-temporarily-triples-payout-to-300k-for-wordpress-exploits?utm_source=rss&utm_medium=rss&utm_campaign=zerodium-temporarily-triples-payout-to-300k-for-wordpress-exploits\";s: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:4216:\"<p><a href=\"https://zerodium.com/\">Zerodium</a>, one of the most well-known security vulnerability brokers, announced that it is tripling payouts for remote code execution exploits on default WordPress installations. Payouts are typically $100K but have been temporarily increased to $300K. </p>\n\n\n\n<p>The company focuses on acquiring original and previously unreported zero-day research. It pays researchers for high-risk vulnerabilities and fully functional exploits, with the highest rewards at $2.5M for &lsquo;full chain, zero-click, with persistence&rsquo; Android exploits. This price tag was increased from $200K in September 2019, suggesting Android exploits have become more difficult to find or that demand for them has increased significantly.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We\'re temporarily increasing our payouts for WordPress RCEs to $300,000 per exploit (usually $100K). <br /><br />The exploit must work with latest WordPress, default install, no third-party plugins, no auth, no user interaction!<br /><br />If you have this gem, contact us: <a href=\"https://t.co/PBuS1nnpED\">https://t.co/PBuS1nnpED</a></p>&mdash; Zerodium (@Zerodium) <a href=\"https://twitter.com/Zerodium/status/1380489573009031170?ref_src=twsrc%5Etfw\">April 9, 2021</a></blockquote>\n</div>\n\n\n\n<p>Exploit resellers operate within a sort of grey area of security research. As a standard practice, security researchers are encouraged to report vulnerabilities to the original developer of the software, not an intermediary that may pass it along to a party that may not use the information for good. The appeal of these companies is that they pay more than most organizations, hence the tagline: &ldquo;<em>We pay BIG bounties, not bug bounties.&rdquo;</em></p>\n\n\n\n<p>WordPress has an account with <a href=\"https://hackerone.com/wordpress/\">Hackerone</a> to pay security researchers for vulnerabilities but <a href=\"https://hackerone.com/wordpress/hacktivity?type=team\">payouts</a> are much smaller in comparison to what exploit brokers pay. This makes it a tough choice for security researchers who do this for a living. Professional zero-day hunters are looking for the highest payouts for the vulnerabilities they find, which can sometimes take months or longer.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Zerodium does not reveal who its clients are or what their purpose is for buying the the vulnerabilities. The best case scenario would be a government entity wanting to secure its own systems. Even then one cannot guarantee that they use the exploit ethically or that they don&rsquo;t inadvertently leak the exploits where they could be used maliciously by others. </p>\n\n\n\n<p>Zerodium did not elaborate on why it has increased payouts for WordPress exploits to $300K. <a href=\"https://blog.wpscan.com/2021/04/10/zerodium-wordpress-exploit.html\">WPScan</a> speculates that the company may suddenly have a greater demand for WordPress RCE exploits, combined with WordPress becoming more secure:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This could indicate that WordPress is becoming more secure and that it is getting harder to find the critical security issues that buyers want. On the other hand, we must also assume that these types of exploits already exist and are already being actively sold on Zerodium and other similar platforms.</p><p>We could also conclude that if a government is going to pay more than $300,000 on a WordPress RCE exploit, that they intend to use it. World governments may even barter over the exploits so that the seller, in this case, Zerodium, gets the best price.</p></blockquote>\n\n\n\n<p>WPScan also emphasized that with WordPress having such a large presence on the web, an exploit against core with those particular characteristics &ldquo;would be devastating to the web as a whole if it landed in the wrong hands.&rdquo;</p>\n\n\n\n<p>&ldquo;Zerodium increasing their prices may indicate that it is becoming harder to find these critical issues in WordPress Core,&rdquo; WPScan founder and CEO Ryan Dewhurst said. &ldquo;That, at least, should be good news for WordPress and the web as a whole.&rdquo;</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, 15 Apr 2021 18:11: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: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: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:68:\"WordPress.org blog: WordPress 5.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10144\";s:7:\"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/2021/04/wordpress-5-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8387:\"<p>WordPress 5.7.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">26 bug fixes</a> in addition to two security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.1 is a short-cycle security and maintenance release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can download WordPress 5.7.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Two security issues affect WordPress versions between 4.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 4.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Thank you <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an XXE vulnerability within the media library affecting PHP 8.</li><li>Thanks <a href=\"https://mikaelkorpela.fi/\">Mikael Korpela</a> for reporting a data exposure vulnerability within the REST API.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> and the WordPress security team for their work on these issues.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-1/\">version 5.7.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.7.1 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.7.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkoo/\">dkoo</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</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/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</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, 15 Apr 2021 03:05:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";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:60:\"WPTavern: FSE Outreach Round #5: Venturing out a Query Quest\";s:7:\"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=115153\";s:7:\"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:161:\"https://wptavern.com/fse-outreach-round-5-venturing-out-a-query-quest?utm_source=rss&utm_medium=rss&utm_campaign=fse-outreach-round-5-venturing-out-a-query-quest\";s: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:5293:\"<p class=\"has-drop-cap\">The Full Site Editing (FSE) outreach program is chugging along. Since December, it has called for and completed four rounds of testing. The latest round asks volunteers to <a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">provide feedback on the Query block</a>, arguably one of the most crucial pieces of the FSE-puzzle.</p>\n\n\n\n<p>Automattic Developer Relations Wrangler Anne McCarthy has been overseeing the program since its inception. Each round of testing asks participants to follow along with a set of instructions while testing a specific feature related to FSE. They can then provide feedback on what does or does not work. Thus far, the program has tested and identified issues for <a href=\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\">template-editing mode</a>, <a href=\"https://wptavern.com/fse-outreach-round-2-building-a-custom-homepage-with-gutenbergs-site-editor\">building a custom homepage</a>, <a href=\"https://wptavern.com/new-full-site-editing-testing-challenge-create-a-custom-404-page\">creating a 404 page</a>, and <a href=\"https://wptavern.com/fse-outreach-round-4-building-a-restaurant-themed-header-with-gutenbergs-site-editor\">wrangling a restaurant-themed header</a>.</p>\n\n\n\n<p>Volunteers for the program should install the latest version of the <a href=\"https://wordpress.org/plugins/gutenberg\">Gutenberg plugin</a> and the <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks theme</a>. Participation is open to all, and further details are available through the announcement post.</p>\n\n\n\n<p>The latest test is all about the Query block &mdash; McCarthy is dubbing it a &ldquo;Query Quest.&rdquo;</p>\n\n\n\n<p>&ldquo;Not many blocks get an entire milestone dedicated to them but the Query Block did!&rdquo; she wrote. &ldquo;As the name implies, this is a pretty powerful block allowing you to display posts/pages on your site and customize them as you see fit. For example, you could easily use this block to show off all of your favorite recipes by setting it up to show a specific category of posts.&rdquo;</p>\n\n\n\n<p>Generally, theme authors will primarily work with this block. However, for those end-users who will inevitably want to customize post output on their sites, they may need to at least have some basic familiarity with it or its block variations.</p>\n\n\n\n<h2>Building With the Query Block</h2>\n\n\n\n<p class=\"has-drop-cap\">Following the instructions for the testing round netted fairly consistent results between the editor and front end. Each step walks participants through the process of assembling a two-column page with posts from separate categories. Within just a few minutes, I built a few demo posts with custom categories named &ldquo;Veggie Garden&rdquo; and &ldquo;Fruit Trees&rdquo; (side note: these are pics of my plants). I sped through the process with no issues.</p>\n\n\n\n<img />Using Columns to output two category-based Query blocks.\n\n\n\n<p>However, I am a bit of a pro at this point with the Query block. It is one feature I have been eyeing at least every week for months.</p>\n\n\n\n<p>The two primary issues I ran into were with the &ldquo;read more&rdquo; link and spacing. For the more-link, it simply did not appear on the front end. When viewing the source code, the wrapper HTML was there, but the actual text was nowhere to be found.</p>\n\n\n\n<p>As for spacing, this is more of a theme problem. I have harped on this issue in past testing rounds, and it is the same ol&rsquo; tune. TT1 Blocks failed to produce consistent spacing between the front and back end. One example is when using the Post Featured Image block followed by the Post Excerpt block. In the editor, there is little whitespace between the two. On the front end, there is ample room.</p>\n\n\n\n<p>Some might say it is the most vital part of page building &mdash; nailing down the layout. I have voiced my concerns <em>ad nauseam</em> on spacing, so I have nothing new to report on the subject.</p>\n\n\n\n<p>I decided to take a few extra steps and move beyond the basic testing instructions. Because it is springtime, I have been enjoying the outdoors a bit more as of late. I wanted to spruce up my Query block design. I wrapped the initial design in a Cover block with a garden-related background image, dropped in some header and intro text, and created boxes for my posts with the Group block. With a splash of color, some font-size changes, and a Spacer block here and there, I built something with a tiny bit more personality.</p>\n\n\n\n<img />Custom layout with the Query, Cover, and Columns blocks.\n\n\n\n<p>Testing never has to be boring. I encourage participants to grab inspiration from their own lives as they venture out on their Query Quest.</p>\n\n\n\n<p>While I have my complaints about the site editor and realize we are miles away from the long-term vision, it is also amazing what is now possible. Even six months ago, building something as simple as this was not happening. More and more each day, I believe a <a href=\"https://wptavern.com/will-full-site-editing-land-in-wordpress-5-8-a-decision-is-forthcoming\">public beta of the site editor</a> and other FSE components in WordPress 5.8 is not such a bad idea.</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, 14 Apr 2021 22:38:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:63:\"BuddyPress: BuddyPress 7.3.0 Maintenance &amp; Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=318066\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://buddypress.org/2021/04/buddypress-7-3-0-maintenance-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1768:\"<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.7.3.0.zip\">BuddyPress 7.3.0</a> is now available. This is a security and maintenance release. All BuddyPress installations are strongly encouraged to upgrade as soon as possible.</p>\n\n\n\n<p>The 7.3.0 release addresses four security issues:</p>\n\n\n\n<ul><li>A vulnerability was fixed that could allow a member to create a group on behalf of another member via a REST API endpoint.</li><li>A vulnerability was fixed that could allow members to favorite any private/hidden activities they shouldn&#8217;t access to via a REST API endpoint.</li><li>A vulnerability was fixed that could allow the creator of a group to still be able to update or delete it after being demoted as a regular member of it via a REST API endpoint.</li><li>A vulnerability was fixed that could allow group&#8217;s banned members to remove themselves from the group and still be able to join it or request a membership to it via a REST API endpoint.</li></ul>\n\n\n\n<p>These vulnerabilities were reported privately to the BuddyPress team by&nbsp;<a href=\"https://profiles.wordpress.org/hoangkien1020/\">Kien Hoang</a>, in accordance with&nbsp;<a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">WordPress’s security policies</a>. Our thanks to the reporter for practicing coordinated disclosure.</p>\n\n\n\n<p>Version 7.3.0 also fixes a bug about our WP CLI Scaffold command.</p>\n\n\n\n<p>For complete details, visit the <a href=\"https://codex.buddypress.org/releases/version-7-3-0/\">7.3.0 changelog</a>.</p>\n\n\n\n<p>Update to BuddyPress 7.3.0 today in your WordPress Dashboard, or by&nbsp;<a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the WordPress.org plugin repository</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, 14 Apr 2021 05:09:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:68:\"WPTavern: WordCamp Europe 2021 Opens Call for Speakers and Workshops\";s:7:\"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=115025\";s:7:\"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:181:\"https://wptavern.com/wordcamp-europe-2021-opens-call-for-speakers-and-workshops?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-europe-2021-opens-call-for-speakers-and-workshops\";s: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:1836:\"<p><a href=\"https://europe.wordcamp.org/2021/wceu-launch-7-june-2021/\">WordCamp Europe 2021</a> will be taking place online, June 7-10. This will be the second year in a row that the event has not been held in person due to the pandemic, but organizers are incorporating feedback from the first edition to improve upon it.</p>\n\n\n\n<p><a href=\"https://europe.wordcamp.org/2021/call-for-speakers/\">Speaker applications are now open</a> and first-time speakers are encouraged to apply. Organizers posted a list of example topics for inspiration, including advanced development, frameworks, security, storytelling, website performance optimization, and more.</p>\n\n\n\n<p>WCEU 2021 will be running two tracks, with two different presentation formats: long talks (20-minute talk with a 10-minute Q&amp;A) and lightning talks (10-minute talk with a 5-minute Q&amp;A). Prospective speakers are allowed to submit up to three different presentation topics on their <a href=\"https://europe.wordcamp.org/2021/speaker-application-form/\">applications</a>. The call for speakers is open until April 24, 2021, and selected speakers will be contacted the first week of May ahead of mid-May public announcements.</p>\n\n\n\n<p>WCEU organizers also plan to continue the successful tradition of hosting workshops after 77% of attendees who completed a feedback survey requested their return. Workshop sessions will be 45 minutes long and hosts will have workshop assistants available to them. Organizers are aiming to schedule a diverse lineup of workshops with topics like &ldquo;Starting with WordPress,&rdquo; accessibility, development, security, and SEO, to name a few.</p>\n\n\n\n<p>The <a href=\"https://europe.wordcamp.org/2021/call-for-workshops/\">call for workshops</a> is on the same timeline as speaker selection, with a closing date of April 24, 2021.</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, 14 Apr 2021 02:40: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: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:172:\"HeroPress: A Journey toward Freedom 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3529\";s:7:\"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://heropress.com/essays/a-journey-toward-freedom-with-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=a-journey-toward-freedom-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:46468:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2022/04/041321-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: My WordPress job allowed the freedom to work on my time.\" /><p><a href=\"https://heropress.com/feed/#nepali\">यो लेख नेपाली भाषामा पनि उपलब्ध छ।</a></p>\n<p>Hello world!</p>\n<p>“Always be thankful for what you have, many people have nothing!” &#8211; Buddha</p>\n<p>Yes, I’m immensely grateful to be writing this essay! I’m fortunate to have had the education that gave me the capacity to aspire, get into a WordPress job, meet people from around the world, connect with Topher of HeroPress, and tell my story!</p>\n<h3>How I Landed Into a WordPress Job</h3>\n<p>My WordPress journey began by chance! Honestly, I didn’t know WordPress until I landed on a WordPress job.</p>\n<p>Back then, I was doing my Master’s degree in Sociology and had just left my work as a school teacher. I was looking for a job that would allow me to focus on my study and pay me a decent salary.</p>\n<p>I had a long career of over 5 years in teaching which was a full-time job. In addition to 9 AM to 5 PM work, we had to work extra hours at home &#8211; designing lesson plans, evaluating assignment works, exams, etc. – so I was finding it hard to manage time for my own study. I just needed a job that wouldn’t require me to work after office hours.</p>\n<p>After applying to several different positions, I finally got a content writing job. Fortunately, the company turned out to be a successful WordPress development company based in Nepal (<a href=\"https://access-keys.com/\">Access Keys</a>).</p>\n<p>Well, it’s how my WordPress story began! But it’s not the full story.</p>\n<h3>For Hope! My Family’s Struggle for Education</h3>\n<p>I come from a remote village in the hills of Nepal, not connected by any means of transportation until recently. We had to walk a minimum of an hour to go to the nearest school, from where I completed my secondary education.</p>\n<blockquote><p>But that time wasn’t just about walking hours to reach school. It was also about poverty, hardships, and the burning desire to overcome them someday!</p></blockquote>\n<p>Schools were first opened in the late 1970s in our village but my parents couldn’t even complete the lower secondary level. Pervasive poverty and lack of awareness both were responsible for it.</p>\n<p>Time passed but our family’s financial condition was still the same. But my parents had understood that the only way out of it was education. Hence, they decided to send us to school, no matter what. Our father sometimes as a seasonal migrant worker to India, sometimes as a porter, brought us (me and my siblings) school supplies. Our mother worked day and night, managed home, family, and our farm.</p>\n<p>After completing secondary level education, I moved to a nearby city in the guardianship of my aunt. With minimal financial support from my parents, my aunt helped me complete higher secondary school.</p>\n<p>However, she had her own hardships. She was a single mother without any academic degree so had to work minimum-wage jobs which hardly met her and her family’s needs.</p>\n<p>Therefore, I couldn’t simply add to her burden. And on the other side, my parents had to support my younger siblings too. So, the only choice I had, if I wanted to study further, was to support myself, for which I started teaching in a school.</p>\n<h3>Breakthrough through English Language Skills</h3>\n<p>I got my life’s first job but it wasn’t easy. I joined a private English-medium school as a teacher. But my schooling as well as the undergraduate program had been in our national language, Nepali, and not in English. We had “English” as a subject in school but the teacher taught us English in the Nepali language. We never spoke in English. Yet, my English writing was fine as I was a good student.</p>\n<p>When I joined an English medium school as a teacher, I had no choice but to improve my English. I practiced speaking English with primary-level students. Within a year, my spoken English improved considerably.</p>\n<p>Along with my teaching job, I continued my college. It was a super-busy schedule but was the only option I had! With my earnings, I paid my college fees, covered some of my living expenses, and also supported my family. Well, this is how I completed my Bachelor’s degree and started my Master’s degree too.</p>\n<p>Later on, the same teaching job that I started to sustain myself enabled me to apply for an English content writing job! As of now, I’m quite confident about my English language skills but still feel hesitant when I have to talk with native speakers.</p>\n<h3>My WordPress Journey – Toward Freedom</h3>\n<p>As I stated earlier, I landed on my first WordPress job when I was looking for the type of job that would allow me free time for my study. Yes, and that’s from where my journey toward freedom began!</p>\n<p>During my interview, I explained to the CEO of <a href=\"https://access-keys.com/\">Access Keys</a> (<a href=\"https://twitter.com/athakuri\">Arjun Singh Thakuri</a>) about the flexibility that I need in my new job so that I could also focus well on my studies. I was hired and could join from 11 AM instead of the usual 9:30 AM after attending my classes in the morning. It was a moment of gratitude and great relief for me!</p>\n<p>I learnt WordPress at Access Keys. <em><strong>First</strong></em>, by reading Wikipedia and other blogs on the web. <em><strong>Second</strong></em>, from Arjun sir as well as from the senior developers and the designers at the company. I used to have a lot of questions, and my team at Access Keys helped me get answers to those questions. <em><strong>Third</strong></em>, by doing. I set up a WordPress.com blog, a testing site on localhost, and tried different options.</p>\n<blockquote><p>My curiosity was definitely the driving force, but above all, ‘the way WordPress is built’ is what made it possible for someone like me (with no technical background) to understand a powerful website creation software, WordPress.</p></blockquote>\n<p>As for content writing skills, I started with list articles (theme collections). Arjun sir mentored me for my first few articles. Later, Access Keys hired an experienced SEO professional <a href=\"https://twitter.com/seonerdy\">Amin Ghale</a> who taught me more about SEO and content writing. He is a mentor cum brother to me.</p>\n<p>When in Access Keys, I joined WordCamp for the first time – <a href=\"https://nepal.wordcamp.org/2015/\">WordCamp Nepal 2015</a>. The event was grand! I met people involved in WordPress from other companies in Nepal and abroad, heard their stories, and learnt about new innovations in WordPress!</p>\n<p>I was truly enthralled by the event and had truly wished to give a presentation in a WordCamp someday. And I did, the very next year! I shared what I had learnt so far on the title ‘SEO Copywriting for WordPress’ at <a href=\"https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwi64ajv-_TvAhVCCM0KHdXKAVoQFjAAegQIBBAD&url=https%3A%2F%2Fkathmandu.wordcamp.org%2F2016%2F&usg=AOvVaw0nTcwn8d7MOgIp2sDtNhOD\">WordCamp Kathmandu 2016</a>.</p>\n<p>Later, I also joined a panel ‘Girls in WordPress – Story, Experience, Opportunity, and Career’ in <a href=\"https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwiCzcj_-_TvAhUJbc0KHfLUAWMQFjAAegQIBBAD&url=https%3A%2F%2Fbiratnagar.wordcamp.org%2F2018%2F&usg=AOvVaw1on2S3L2VlRRUTeN9eYsqa\">WordCamp Biratnagar 2018</a> along with a dear friend <a href=\"https://twitter.com/sandilyakafle\">Ganga Kafle</a> and my WordPress sister <a href=\"https://twitter.com/prithuthakuri\">Prithu Singh Thakuri</a>. Now, looking forward to joining some international WordCamps!</p>\n\n<a href=\"https://heropress.com/wordcampkathmandu2016speaker-srai/\"><img width=\"2048\" height=\"1349\" src=\"https://heropress.com/wp-content/uploads/2021/04/wordcampkathmandu2016speaker-srai.jpg\" class=\"attachment-full size-full\" alt=\"Speaking at WordCamp Kathmandu 2016 S Rai\" /></a>\n<a href=\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/wordcampbiratnagar2018panel/\"><img width=\"2048\" height=\"1365\" src=\"https://heropress.com/wp-content/uploads/2022/04/wordcampbiratnagar2018panel.jpg\" class=\"attachment-full size-full\" alt=\"Sunita Rai on a panel at WordCamp\" /></a>\n<a href=\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/wordcampkathmandu2017fun/\"><img width=\"2048\" height=\"1367\" src=\"https://heropress.com/wp-content/uploads/2022/04/wordcampkathmandu2017fun.jpg\" class=\"attachment-full size-full\" alt=\"\" /></a>\n<a href=\"https://heropress.com/wordcampkathmandu2018-fun/\"><img width=\"2048\" height=\"1365\" src=\"https://heropress.com/wp-content/uploads/2021/04/wordcampkathmandu2018-fun.jpg\" class=\"attachment-full size-full\" alt=\"A Moment of Fun at WordCamp Kathmandu 2018\" /></a>\n\n<p>About my WordPress career, I’m still in WordPress content writing.</p>\n<p>After Access Keys, I went to ThemeGrill, another successful WordPress business in Nepal, with even more flexibility and freedom in the working hours.  <a href=\"https://twitter.com/sanjipshah\">Sanjip Shah</a> and <a href=\"https://twitter.com/rabinsthaa\">Rabin Shrestha</a> (Founders of ThemeGrill) encouraged me to learn and explore this field even more. After some time, ThemeGrill hired a few new writers and I started mentoring them.</p>\n<p>Next, I joined Awesome Motive, the company behind the popular WPBeginner blog. In the beginning, I wrote for IsItWP and MonsterInsights blog but later also got the opportunity to write for WPBeginner. When at Awesome Motive, I got an even better opportunity to learn WordPress and marketing skills.</p>\n<p>My supervisors <a href=\"https://twitter.com/shahzadsaeed\">Shahzad Saeed</a> from India, <a href=\"https://twitter.com/noumaan_\">Noumaan Yaqoob</a> from Pakistan, <a href=\"https://twitter.com/LittleZotzWrite\">Lauren Tharp</a>, and <a href=\"https://twitter.com/keri_engel\">Keri Lynn Engel</a> from the United States helped me be better at my work. Above all, I was super lucky to have <a href=\"https://twitter.com/syedbalkhi\">Syed Balkhi</a> himself tutoring me every week on various aspects of content writing and marketing. I still remember how he explained the “success gap” over multiple calls, over weeks. He’s really a wonderful mentor!</p>\n<p>As of now, I work with beginners who’re just starting their careers in WordPress content writing. I’m trying to help small WordPress businesses and blogs with the marketing skills I’ve acquired so far. For example, SiteSaga.com, ZakraTheme.com are some of the sites I’m currently working on. Yet, I feel there’s a lot more for me to learn!</p>\n<p>Now, I want to make my final and important point – freedom!</p>\n<blockquote><p>First, my WordPress job allowed me the freedom to work on my time (so I could manage time for my study too). But more importantly, I meant the ‘economic freedom’.</p></blockquote>\n<p>For an individual, economic independence is a major freedom factor! Income isn’t everything, but definitely a basic aspect of human development!</p>\n<p>My salary at my first WordPress job wasn’t high, but increments since then are cool! Plus, we can always do some extra work. For instance, after my talk at WordCamp, I got a lot of freelance work opportunities, which I did during my free time and earned some extra bucks. Then, I was able to support my family even better.</p>\n<p>Finally, it&#8217;s the &#8216;feeling of freedom&#8217; that, I have now, enabled me to share this story. I always had an &#8216;inferiority complex&#8217; due to which I could never tell anyone about my family or our socio-economic background. Even if someone asked, I&#8217;d simply avoid the question or lie to them.</p>\n<p>I&#8217;ve now overcome the situation as well as the fear of being judged. And, I believe it&#8217;s the &#8216;freedom&#8217; in its truest sense.</p>\n<p>That’s my story of freedom! Story of our freedom!</p>\n<h3>Now is Great! I Have Greater Aspiration for the Future!</h3>\n<p>Yes, now is great! I have a good career as a WordPress content writer, editor, and mentor. I also joined the MPhil degree and will soon complete it.</p>\n<p>For the future, have greater aspirations!</p>\n<ol>\n<li>I hope to continue doing what I do &#8211; teaching beginners copywriting skills and help them achieve their part of freedom. WordPress is a gift for people like me!</li>\n<li>I want to earn a Doctorate degree; not yet content being a student! I haven’t planned it yet but I really wish to do it in this life!</li>\n<li>I want to give back to my community. Our village hasn’t changed much &#8211; still struggling with poverty. Even today, most students from my village fail to complete their university degree in lack of a support system. I firmly believe education is vital to change; for individuals as well as society as a whole. So, I really wish to work on it but I’m not yet sure how! I hope time will answer!</li>\n</ol>\n<p>Thanks for reading my story! Thanks, dear friend Topher for this opportunity! It’s a privilege to be sharing my story on HeroPress (feeling like a hero!). :D</p>\n<p>Thank you to every single individual who supported my journey to this date! And, thanks to the universe for everything I have!</p>\n<hr class=\"ttfmake-hr\" />\n<h1 id=\"nepali\">वर्डप्रेससंगै स्वतन्त्रता तर्फको यात्रामा</h1>\n<p>नमस्कार संसार!</p>\n<p>तपाईंसँग जे छ त्यसैमा सदैव कृतग्य रहनु, किनकी धेरै मानिसहरू संग केहि पनि हुन्न। &#8211; बुद्ध</p>\n<p>हो, म यो लेख लेख्दै गर्दा एकदमै खुसी र आभारि छु। म आफुलाई एकदमै भाग्यमानी ठान्दछु कि मैले जस्तोसुकै परिस्थितिमा पनि शिक्षा आर्जन गर्न पाए जसले मलाई सपना देख्न प्रेरित गर्यो, वर्डप्रेसमा काम गर्न सक्षम बनायो, संसारभरिका मानिससंग भेटघाट गर्ने अवसर दिलायो, हिरोप्रेसका टोफर संग भेत्न र मेरो कथा सबैसंग बाड्ने अवसर दिलायो।</p>\n<h3>मेरो वर्डप्रेस यात्राको शुरुवात</h3>\n<p>मेरो वर्डप्रेस यात्रा संयोगवश सुरु भएको हो। साच्चिकै भन्नुपर्दा मैले काम गर्न सुरु गर्नु भन्दा अगाडी मलाई वर्डप्रेसको बारेमा केही पनि थाहा थिएन।</p>\n<p>त्यो समयमा म समाजशास्त्र बिषयमा मास्टर डिग्री गरिरहेकी थिएँ। समयको अभावले गर्दा भर्खरै विद्यालय शिक्षण पेशाको काम पनि छोडेको थिएं। त्यसैले म यस्तो कामको खोजीमा थिए जुन बाट राम्रो तलब र मेरो पढाईको लागि केहि समय पनि बच्न सक्थ्यो।</p>\n<p>मैले शिक्षण पेशामा लगभग ५ बर्ष सम्म काम गरें। ती दिनहरुमा म विहान ९ बजेदेखि दिउँसो ५ बजे सम्म स्कुल पढाउथे । अनि फेरि राति अर्को दिनको कक्षाका लागि तयारी र गृहकार्य जाँच गर्दा गर्दै ठिक्क हुन्थ्यो। जसले गर्दा मलाई आफ्नो पढाई सम्हाल्न गाह्रो भइरहेको थियो। त्यसैले मलाई खासगरि अफिस समयपश्चात अरु थप काम गर्नु नपर्ने खालको काम चाहिएको थियो।</p>\n<p>धेरै खालको जागिरहरूमा आवेदन दिएपश्चात बल्ल कन्टेन्ट राइटिङ्ग (इन्टरनेटको लागि लेख लेखन) को जागिर पाए। भाग्यवश मैले काम पाएको कम्पनी वर्डप्रेस विकासको क्षेत्रमा नेपालको एक सफल कम्पनी रहेछ (<a href=\"https://access-keys.com/\">एक्सेस किइज</a>)।</p>\n<p>हो यसरी नै मेरो वर्डप्रेसको यात्रा सुरु भयो, तर यो नै सम्पुर्ण कथा भने हैन।</p>\n<h3>शिक्षाको लागि मेरो परिवारको संघर्ष र आशा</h3>\n<p>नेपाल को पहाडी भेगमा अवस्थित एउटा गाउँमा मेरो जन्म भएको हो जहाँ आवतजावत गर्नलाई अझैसम्मपनि भरपर्दो सडक अनि गाडीहरूको ब्यबस्था भएको छैन। हाम्रो घरबाट नजिकैको विद्यालय नै १ घण्टा को बाटो हिडेर पुग्नुपर्थ्यो र त्यहि विद्यालय बाट मैले कक्षा १० सम्म को अध्ययन पुरा गरें।</p>\n<blockquote><p>तर हाम्रो गाउँको त्यो समय घन्टौ हिड्नुपर्ने दुखका बारेमा मात्र थिएन। सर्वत्र ब्याप्त गरिवी, खानलाउनको लागि कठिन संघर्ष, र यि तमाम दुखबाट कुनै दिन मुक्त हुने प्रबल आकङ्क्षाको पनि समय थियो।</p></blockquote>\n<p>हाम्रो गाउँमा विद्यालय सन १९७० को दशक अन्त्य तिर खुले तर मेरो आमाबाबुले भने गरिवी र अशिक्षाको कारण निम्न माध्यमिक तहको शिक्षा सम्म पनि पुरा गर्न सक्नुभएन। समय बित्यो, हामि बिद्यालय जान थाल्यौ तर पनि हाम्रो परिवारको आर्थिक अवस्थामा भने कुनै सुधार आएको थिएन। तरपनि मेरा बुबाआमाले भने शिक्षाको महत्व बुझिसक्नु भएको थियो। त्यसैले उहाहरुले जस्तो सुकै अप्ठ्यारो परिस्थिति भए पनि हामी लाई विद्यालय पठाउने निधो गर्नुभयो।</p>\n<p>आपा (राई बान्तावा भाषामा बुबा) कहिले भारततिर मौसमी कामदार को रूपमा त कहिले भरियाको रूपमा काम गर्न जानुहुन्थ्यो। अनि फर्केर आउँदा म र मेरो बहिनीहरू लाई किताब कापी र स्कुलको कपडा हरू ल्याइदिनु हुन्थ्यो। हाम्रो आमा भने रातदिन आफैं खटेर घरपरिवार, खेतिपाती र गाइबस्तु सम्हाल्नु हुन्थो।</p>\n<p>गाउँकै बिध्यालय बाट माध्यमिक तह उत्तीर्ण गरीसके पछि म नजिकै को सहरमा फुपुसंग बस्दै पढ्न थालें। मेरो फुपुले मलाई उच्च शिक्षा हासिल गर्नमा धेरै मद्दत गर्नुभएको छ।</p>\n<p>तर त्यो बेला उहाँको लागि पनि कठिन समय थियो। कुनै पनि शैक्षिक डिग्रि नभएको एक एकल महिलाका लागि सहरमा आफु अनि आफ्नो सन्तानलाइ पाल्नु, हुर्काउनु, पढाउनु सानो दुख थिएन। उहाँले दिनभर ज्याला मजदुरि गरेर कमाएको पैसाले बिहानबेलुका को छाक टार्न मै ठिक्क हुन्थ्यो।</p>\n<p>त्यसैले म आफैंपनि उहाँमाथि अझ भार थपिन चाहन्नथे। फेरि अर्को तर्फ मेरो बाबाआमा ले पनि त अरु साना बहिनीहरू लाई हेर्नुपर्थ्यो। अब भने मसंग आफ्नो उच्च शिक्षालाइ निरन्तरता दिनको लागि एउटै मात्र बिकल्प थियो &#8211; आफैले कमाएर पढ्ने। यसैकारण मैले एउटा विद्यालयमा पढाउन शुरु गरें।</p>\n<h3>अङ्ग्रेजी भाषाको ज्ञानमार्फत उडान आरम्भ</h3>\n<p>मैले मेरो जीवनको पहिलो जागिर त पाए तर त्यो सोचेजस्तो सजिलो थिएन। मैले शिक्षक को रूपमा एक निजी विद्यालयमा प्रबेश गरे। तर म आफैले भने सरकारी विद्यालयमा पढेको थिए जहाँ नेपाली भाषामा पढाई हुन्थ्यो। हाम्रो कक्षामा अङ्ग्रेजी एउटा मात्र अनिवार्य विषय थियो तर त्यो पनि शिक्षकहरु ले नेपाली भाषामा नै पढाउनु हुन्थ्यो। हामीले कहिल्यै पनि अङ्ग्रेजी भाषा बोलेनौं। यधपी म राम्रो बिध्यार्थीहरु मध्यको एक थिए, जसकारण मेरो अङ्ग्रेजी लेखन भने सामान्यतया राम्रो नै थियो।</p>\n<p>मैले अङ्ग्रेजी शिक्षकको रूपमा पढाउन थालिसके पछि भने मसंग अङ्ग्रेजी सुधार्नु भन्दा अरू कुनै उपाए थिएन। त्यसैले मैले प्राथमिक तहका बिध्यार्थीहरूसँग अङ्ग्रेजीमा बोल्न सुरु गरें। फलस्वरूप एकवर्ष भित्र मेरो अङ्ग्रेजी बोलाईमा धेरै सुधार आयो।</p>\n<p>शिक्षण पेशासंगै मैले मेरो पढाईलाई पनि अगाडि बढाउदै लगें। त्यो बेला मेरो दैनिकि धेरै नै व्यस्त थियो, तर फेरि अर्को विकल्प पनि त थिएन। मेरो तलबले आफ्नो पढाई खर्च जुटाउँदै अलिअलि परिवार लाई पनि सहयोग गर्न थाले। हो यसरी नै मैले ब्याचलर डिग्री पुरा गरें र मास्टर डिग्री पनि शुरु गरें।</p>\n<p>मैले आफ्नो आवश्यकता पुर्ति गर्नको लागि सुरु गरेको शिक्षण पेशाले नै मलाई अङ्ग्रेजी कन्टेन्ट राइटिङ्गको जागिरमा आवेदन दिने साहस दियो। अहिलेको कु्रा गर्ने हो भने, म मेरो अङ्ग्रेजी भाषाको बोलाई र लेखाईसंग केही हदसम्म विश्वस्त छु तर अझै पनि अङ्ग्रेजी नै मातृभाषा भएका बिदेशिहरुका अगाडि बोल्न भने केहि हिच्किचाउछु।</p>\n<h3>मेरो वर्डप्रेस यात्राः स्वतन्त्रता तिर</h3>\n<p>मैले अगाडि नै भनेको जस्तै मेरो पढाईलाई हानी नगर्ने खालको काम खोज्दै गर्दा संयोगवश वर्डप्रेसमा प्रवेश गरेको थिएँ। र यहि बाट नै मेरो स्वतन्त्रता तिर को यात्रा सुरु भएको हो।</p>\n<p>मैले कामको लागि अन्तर्वार्ता दिँदै गर्दा नै <a href=\"https://access-keys.com/\">एक्सेस किइज</a> कम्पनीको प्रमुख (<a href=\"https://twitter.com/athakuri\">अर्जुन सिंह ठकुरी</a>) संग आफ्नो पढाईको लागि चाहिने समयको बारेमा पनि कुरा गरेको थिएँ। उहाँले सजिलैसंग सहमति जनाउनु भयो। फलस्वरूप मैले आफ्नो बिहान को कलेज सकेर ११ बजेदेखि कार्यालय जाने भए जबकि अफिस समय भने ९ः३० बजे नै शुरु हुन्थ्यो। त्यो पल मेरो लागि कृतज्ञता र ठूलो राहतको क्षण थियो।</p>\n<p>एक्सेस किइज कम्पनीमा काम गर्दा नै मैले वर्डप्रेस सिके। <em><strong>पहिलो</strong></em>, विकिपीडिया र अन्य ब्लग हरूलाई धेरै पढे। <em><strong>दोस्रो</strong></em>, नजानेको सानासाना कुराहरू अर्जुन सर र अरू अनुभबी कर्मचारी (डेभलपर, डिजाइनर) हरु संग सोध्थे। र उहाँ हरूले पनि धेरै सहयोग गर्नुहुन्थ्यो। <em><strong>तेस्रो</strong></em>, मैले आफैले वर्डप्रेस डटकम ब्लग स्थापना गरें, परिक्षणका लागि वेबसाइट बनाए र त्यहाँ हरेक कुरा जान्ने र बुझ्ने कोशिस गरे।</p>\n<blockquote><p>अवश्य पनि मेरो जिज्ञासु भावना नै मलाई अगाडि बढाउने शक्ती थियो। यधपी म जस्तो प्राविधिक पृष्ठभूमि नभएको ब्यक्तिलाई वेबसाइट बनाउन सक्ने शक्तिशाली सफ्टवेयर, वर्डप्रेस को बारेमा बुझाउनमा भने वर्डप्रेस आफै सरल हुनु र इन्टरनेटमा प्रशस्ट सामग्रि पाइनुको ठूलो भुमिका छ।</p></blockquote>\n<p>मैले कन्टेन्ट राइटिङ्ग गर्ने क्रमको शुरुवात भने वर्डप्रेस थिमको सुचि बनाउने लेखहरुबाट गरें। सुरूको लेखहरूमा अर्जुन सर नै मेरो सल्लाहकारको रूपमा रहनु भयो। पछि एक्सेस किइज कम्पनीले अनुभबी एसईओ विज्ञ <a href=\"https://twitter.com/seonerdy\">अमिन घले</a> लाइ नियुक्ति गर्यो र उहाँले नै मलाई धेरै कुराहरु सिकाउनुभयो। उहा मेरो गुरुका साथै दाई पनि हुनुहुन्छ।</p>\n<p>म एक्सेस किइज कम्पनीमा काम गरिरहेकै बखत पहिलो पटक “<a href=\"https://nepal.wordcamp.org/2015/\">वर्डक्याम्प नेपाल २०१५</a>“ मा सहभागी भए। यो कार्यक्रम भव्य थियो। मैले त्यहाँ वर्डप्रेसमा काम गर्ने नेपालका तथा अन्य देशबाट आएका ब्यक्तिहरुसंग भेटें, उनीहरूको कथा सुने र वर्डप्रेसको बारेमा अझ नयाँनयाँ कुराहरु थाहा पाए।</p>\n<p>म त्यो कार्यक्रमबाट धेरै नै प्रभावित भए र त्यतिबेलानै कुनै दिन वर्डक्याम्पमा वक्तव्य दिने अठोट गरे। नभन्दै मैले अर्को सालको &#8220;<a href=\"https://kathmandu.wordcamp.org/2016/\">वर्डक्याम्प काठमान्डु २०१६</a>“ मा वक्ता को रूपमा सहभागी भए र “वर्डप्रेसको लागि एसइओ कपिराईटिङ“ शिर्षक मा वक्तव्य दिए।</p>\n<p>पछि फेरि बिराटनगर मा आयोजना भएको “<a href=\"https://biratnagar.wordcamp.org/2018/\">वर्डक्याम्प बिराटनगर २०१८</a>“ मा पनि सहभागी भए। यसमा म, साथी <a href=\"https://twitter.com/sandilyakafle\">गंगा काफ्ले</a> र प्यारी बहिनी <a href=\"https://twitter.com/prithuthakuri\">प्रिठु शिंह थकुरी</a>ले “वर्डप्रेसमा केटीहरुः अनुभव, कथा, अवसर, र चुनौती“ शिर्षक मा छलफल गरेका थियौ। अब भने, मलाई अरु अन्तर्राष्ट्रिय वर्डक्याम्प हरूमा सहभागी हुन मन छ।</p>\n\n<a href=\"https://heropress.com/wordcampkathmandu2016speaker-srai-1/\"><img width=\"2048\" height=\"1349\" src=\"https://heropress.com/wp-content/uploads/2021/04/wordcampkathmandu2016speaker-srai-1.jpg\" class=\"attachment-full size-full\" alt=\"वर्डक्याम्प काठमान्डु २०१६ मा प्रस्तुति दिदै गर्दा\" /></a>\n<a href=\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/wordcampbiratnagar2018panel-2/\"><img width=\"2048\" height=\"1365\" src=\"https://heropress.com/wp-content/uploads/2022/04/wordcampbiratnagar2018panel-1.jpg\" class=\"attachment-full size-full\" alt=\"वर्डक्याम्प बिराटनगर २०१८ मा एक प्यानलमा बोल्दै गर्दा\" /></a>\n<a href=\"https://heropress.com/wordcampkathmandu2017fun-1/\"><img width=\"2048\" height=\"1367\" src=\"https://heropress.com/wp-content/uploads/2021/04/wordcampkathmandu2017fun-1.jpg\" class=\"attachment-full size-full\" alt=\"वर्डक्याम्प काठमान्डु २०१७ मा वर्डप्रेसको मेरो दाजुभाइहरु सँग फोटो खिच्दै\" /></a>\n<a href=\"https://heropress.com/wordcampkathmandu2018-fun1/\"><img width=\"2048\" height=\"1365\" src=\"https://heropress.com/wp-content/uploads/2021/04/wordcampkathmandu2018-fun1.jpg\" class=\"attachment-full size-full\" alt=\"वर्डक्याम्प काठमान्डु २०१८ मा एक रमाइलो क्षण\" /></a>\n\n<p>म अझै पनि वर्डप्रेस कन्टेन्ट राइटिङ्ग नै गर्छु।</p>\n<p>मैले एक्सेस किइजमा काम गरिसके पछि नेपालको अर्को सफल कम्पनी थिमग्रिलमा प्रवेश गरे। त्यहाँ अझै धेरै काममा सौलियत र समयमा लचकता थियो। थिमग्रिल कम्पनी का संस्थापक-सन्चालक द्वय <a href=\"https://twitter.com/sanjipshah\">सन्जिप शाह</a> र <a href=\"https://twitter.com/rabinsthaa\">रबिन श्रेष्ठ</a> सरले झन धेरै कुरा सिक्ने हौसला दिनुभयो। केही समय पछाडि कम्पनी ले नयाँनयाँ लेखकहरु ल्यायो र मैले उनीहरूलाई सिकाउन थाले।</p>\n<p>पछि मैले अमेरिकामा अवस्थित अवसम मोटिभ कम्पनीमा पनि काम गरें। सुरु सुरुमा “इजइटडब्लुपि“ र “मन्स्टरइनसाइट्स“ ब्लगमा लेखे र पछि “डब्लुपिबिगिनर“ मा पनि लेख्ने मौका पाएं। म यसै कम्पनीमा काम गरिरहेकै बेला वर्डप्रेस र मार्केटिङ सम्बन्धि अझ धेरै कुरा जान्ने मौका पाए।</p>\n<p>मेरो काममा सुधार आउनुमा मुख्यतया मेरो निरिक्षक <a href=\"https://twitter.com/shahzadsaeed\">साहजाद सइद</a> (भारतबाट), <a href=\"https://twitter.com/noumaan_\">नवमान याकुब</a> (पाकिस्तानबाट), <a href=\"https://twitter.com/LittleZotzWrite\">लउरेन थार्प</a> र <a href=\"https://twitter.com/keri_engel\">केरि लिन एन्जेल</a> (अमेरिकाबाट) को धेरै ठूलो भुमिका छ। यतिमात्र हैन कम्पनीको प्रमुख <a href=\"https://twitter.com/syedbalkhi\">शाइद बाल्खि</a> संग काम गर्न पाउनु पनि मेरो लागि भाग्यको कुरा थियो। उहाँले मलाई प्रत्येक हप्ता कन्टेन्ट राइटिङ्ग को बारेमा बिस्तृत रुपमा सिकाउनु हुन्थ्यो। मलाई अझै याद छ उहाँले थुप्रै पटकको संवादमा “सफलताको अन्तर&#8221; को बारेमा सिकाउनु भएको थियो। उहाँ साच्चिकै राम्रो प्रशिक्षक सल्लाहकार हुनुहुन्छ।</p>\n<p>अब अहिलेको कुरा! हाल म वर्डप्रेस लेख लेखन क्षेत्रमा भर्खर आउदै गरेका ब्यक्तिहरु संग काम गर्छु। मैले अहिलेसम्म बटुलेको अनुभवहरु को माध्यमबाट साना वर्डप्रेस विजिनेश र ब्लग लाई सहयोग गर्न खोजिरहेको छु। जस्तो कि म अहिले “साइटसागा डटकम“ र “जाक्राथिम डटकम“ मा कार्यरत छु। यधपि मेरो आफ्नै सिक्ने क्रम भने सदैब जारि नै छ।</p>\n<p>अब भने म आफुलाइ लागेको सबभन्दा महत्वपुर्ण कुरा भन्न चाहान्छ। यो क्षेत्रमा मैले पाएको सबभन्दा महत्वपूर्ण कुरा भनेको “स्वतन्त्रता“ हो।</p>\n<blockquote><p>सर्वप्रथम त मेरो वर्डप्रेसको कामले मलाई समयको स्वतन्त्रता दिलायो। मेरो मतलब यो काम म आफुले भ्याएको समयमा गर्न सक्थे जसले गर्दा मेरो आफ्नै पढाईको लागि समय छुटाउन पाए। अनि दोस्रो कुरा भनेको “आर्थिक स्वतन्त्रता“।</p></blockquote>\n<p>आर्थिक आत्मनिर्भरता प्रत्येक व्यक्तिकालागि स्वतन्त्रता प्राप्तिको एक प्रमुख आधार हो। आम्दानी नै सबै कुरा हो भन्ने त होइन तर यो मानव विकासको एक आधारभुत पक्ष भने अवश्य पनि हो।</p>\n<p>वर्डप्रेसमा मेरो शुरुको तलब ठिकै मात्र थियो तर यसको वृद्धि क्रमशः राम्रो हुदै गयो। उदाहरणका लागि, मैले वर्डक्याम्पमा वक्तव्य दिइसकेपछि भने मलाई अरू पनि धेरै फ्रिल्यान्सिङ्ग काम गर्ने अवसरहरू पाए जुन काम मैले खालि समयमा गर्थे र केही थप पैसा पनि कमाए। त्यसपछि मैले मेरो परिवारलाई पनि राम्ररि सहयोग गर्न थाले।</p>\n<p>अबभने, म स्वतन्त्रता बारे अन्तिम कुरा भन्न चाहान्छु। मलाइ लाग्छ यो स्वतन्त्रताको अनुभुति नै त हो जसले मलाइ यो लेख लेख्न सक्षम बनायो। किनभने मलाइ जहिल्यै पनि लघुताबासले थिचिरहन्थ्यो र आफ्नो परिवार अनि आफ्नो सामाजिक-आर्थिक अवस्थाबारे कसैलाइ पनि भन्न सक्दिनथे या चाहान्नथे। यदि कसैले सोधिहाले पनि, म त्यो प्रश्नलाइ बेवास्ता गर्थे वा ढाटेर जवाफ दिन्थे।</p>\n<p>अहिलेको सन्दर्भको कुरा गर्दा, मैले त्यो परिस्थिति र अरुले के सोच्छन भन्ने डर दुबैमाथि जित हासिल गरेझै लाग्छ। र मलाइ यो नै साचो अर्थमा &#8216;स्वतन्त्रता&#8217; हो जस्तो लाग्छ।</p>\n<p>यही हो मेरो स्वतन्त्रता को कथा! हाम्रो स्वतन्त्रता को कथा!</p>\n<h3>आज राम्रो छ र मसँग अझै ठुला आकांक्षाहरु छन् भविष्यको लागि!</h3>\n<p>हो, मेरो वर्तमान राम्रो छ! वर्डप्रेस कन्टेन्ट राइटर, एडिटर, र सल्लाहाकार रूपमा मेरो करियर राम्रो छ। म एमफिल डिग्री पनि गर्दैछु र छिट्टै पुरा पनि गर्नेछु।</p>\n<p>तर अझपनि भविष्यको लागि मेरा धेरै ठुला आकांक्षाहरु छन्!</p>\n<ol>\n<li>म जे गरिरहेको छु त्यसैलाई निरन्तरता दिन चाहन्छु &#8211; नयाँ लेखकहरुलाई कपिराइटिङ्गको सिप सिकाउदै स्वतन्त्रता को अनुभुति दिलाउन। म जस्तो मान्छेहरू को लागि वर्डप्रेस एक अमुल्य उपहार हो।</li>\n<li>म कुनैदिन विद्यावारिधि गर्न चाहन्छु। यसको लागि यतिबेला भने कुनै योजना बनाएको छैन तर जसरी पनि यसै जुनिमा पुरा गर्ने इच्छा छ।</li>\n<li>म मेरो समुदायलाई सहयोग गर्न चाहन्छु। हाम्रो गाउँमा अझै पनि धेरै परिवर्तन आएको छैन – गरिबीको अवस्था यथावत् नै छ। राम्रो सहयोग प्रणालीको अभावमा अहिले पनि मेरो गाउँका धेरै जसो विद्यार्थीहरु स्नातक तह सम्मको अध्ययन पुरा गर्न सम्म असमर्थ छन्। मलाइ चै ब्यक्ति र समाज सबैको परिवर्तन को लागि शिक्षा एक्दमै महत्वपुर्ण हुन्छ भन्ने कुरामा दृढ विश्वास छ। त्यसैले म यो क्षेत्रमा काम गर्न चाहन्छु, तर कसरी गर्ने भन्ने कुरा भने थाहा छैन! मलाई आशा छ, समयले मेरो प्रश्नको जवाफ अवश्य दिनेछ!</li>\n</ol>\n<p>मेरो कथा पढ्नुभएको यहाँहरु सबैलाई धन्यवाद! मुख्यतः मलाई यो अवसर दिने साथी टोफर लाई धेरै धेरै धन्यवाद! हिरोप्रेसमा मेरो कथा सुनाउन पाउँदा म धेरै नै खुसि छु (आफुलाइ हिरो जस्तै महसुस गरिरहेकोछु)।</p>\n<p>मलाई यो स्थान सम्म पुग्न मद्दत गर्ने सम्पूर्ण व्याक्तीहरूलाई धेरै धेरै धन्यवाद! मैले पाएका सम्पूर्ण चिजहरुको लागि ब्रह्माण्ड लाई धन्यवाद!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/a-journey-toward-freedom-with-wordpress/\">A Journey toward Freedom with WordPress &#8211; वर्डप्रेससंगै स्वतन्त्रता तर्फको यात्रामा</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Apr 2021 02:24: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:10:\"Sunita Rai\";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:52:\"WPTavern: Yet Another WordPress Block Library Plugin\";s:7:\"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=115095\";s:7:\"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:149:\"https://wptavern.com/yet-another-wordpress-block-library-plugin?utm_source=rss&utm_medium=rss&utm_campaign=yet-another-wordpress-block-library-plugin\";s: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:4107:\"<p class=\"has-drop-cap\">You are the team manager at a WordPress development company. You just spent the last couple of months directing the group of highly skilled developers that you oversee to create the latest and greatest block library for WordPress. Your developers just spent those two months recreating what has already been done at least a couple of dozen times.</p>\n\n\n\n<p>You go through your product launch list:</p>\n\n\n\n<p><em>Testimonial block?</em> Check.</p>\n\n\n\n<p><em>Accordion block?</em> Check.</p>\n\n\n\n<p><em>Countdown block?</em> Check.</p>\n\n\n\n<p><em>Meme-creation block?</em> Coming in version 2.0.</p>\n\n\n\n<p>Everything seems to be in order. Your company has a new and shiny wheel, a bullet point on its product list, and a promise to end-users that you are keeping up with the times, launching a set of blocks that they can pick up literally anywhere else. But, yours is better because you built it in-house.</p>\n\n\n\n<p>Color me unimpressed.</p>\n\n\n\n<p>Maybe you are just trying to make a dent in the market, grabbing your share of the pie that companies have been snacking on for the last couple of years. Every time I see another forms plugin, I wonder how they will remain competitive, but there have been success stories. However, the ones who tell those stories always had a fresh take on an old concept.</p>\n\n\n\n<p>I worry about the upcoming years when the block market is simply a race to the bottom. Everyone has built their plugin with 100+ blocks, 500+ patterns, and more customization options than you can count. It is the story of the early ThemeForest days where premium themes amassed a gluttonous amount of theme options. The top sellers were continually one-upping each other with another notch on their feature lists.</p>\n\n\n\n<p>As a user, developer, and journalist who writes about these products, I am often lost. I look at a new plugin and ask myself if I had already checked it out and dismissed it last week. I am always searching for something innovative, but the lines between one project to the next are blurry. I am swirling in a sea of icon, shape divider, post list, and container blocks &mdash; just looking for a life preserver to pull myself out.</p>\n\n\n\n<p>Don&rsquo;t get me wrong. I am a wheel recreator myself. I have built products that others had already created. In some cases, I launched something better. In others, I failed miserably. I may be a little biased, but I always felt like I was bringing something new to the table. And that is where I take issue.</p>\n\n\n\n<p>I want to see you create a block that no one has ever done before, such as <a href=\"https://wptavern.com/display-digital-sheet-music-with-the-wordpress-block-editor\">drawing digital sheet music</a> or a <a href=\"https://wptavern.com/block-a-saurus-embeds-a-side-scrolling-t-rex-game-via-the-block-editor\">side-scrolling T-Rex game</a>.</p>\n\n\n\n<p>I want to see you extend the editor with new tools like <a href=\"https://wptavern.com/emoji-conbini-and-the-case-for-a-block-enhancements-directory\">inserting Emoji</a> or <a href=\"https://wptavern.com/insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin\">Font Awesome icons</a> into Rich Text.</p>\n\n\n\n<p>I want to see you overhaul the editor and create a <a href=\"https://wptavern.com/new-iceberg-plugin-brings-a-distraction-free-writing-experience-to-wordpress\">Markdown-friendly experience</a>.</p>\n\n\n\n<p>Instead of an &ldquo;advanced&rdquo; list block of your own design, create a plugin that extends the core List block with custom options. Skip that custom gallery. <a href=\"https://wptavern.com/automatically-create-image-slideshows-with-the-full-screen-galleries-plugin\">Bring something new</a> to the existing Gallery block. Got a custom music player? Use it to overhaul the Audio block instead of wrapping it up separately.</p>\n\n\n\n<p>The community has all the tabs, buttons, and progress bars it can handle. Of course, if you are raising the bar on all of these same ol&rsquo; blocks, keep pushing forward. Let&rsquo;s see what you can do. Otherwise, keep thinking outside of the box.</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, 13 Apr 2021 20:34:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:50:\"WordPress.org blog: People of WordPress: Tyler Lau\";s:7:\"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=10102\";s:7:\"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:65:\"https://wordpress.org/news/2021/04/people-of-wordpress-tyler-lau/\";s: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:9022:\"<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are lesser-known.</em></p>\n\n\n\n<h2><strong>Embrace Who You Are and Your Journey</strong></h2>\n\n\n\n<p>In this People of WordPress contributor story, we chat to Tyler Lau from the US on his relationship building work in marketing and his WordPress journey.</p>\n\n\n\n<p>Read on to discover his story which shows it is often what you have learned from negative experiences in your life that can make you a major asset to a product team.</p>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-thumb.jpg?resize=632%2C464&ssl=1\" alt=\"Tyler Lau stood in front of a colorful mural\" class=\"wp-image-10116\" width=\"632\" height=\"464\" />\n\n\n\n<h2><strong>An Entrepreneurial Mindset</strong></h2>\n\n\n\n<p>Tyler recalls he always had a knack for spotting a enterprise ideas. As an industrious seven-year-old, he was already finding ways to make sales during the school breaks.&nbsp;</p>\n\n\n\n<p>While many entrepreneurs have similar stories, Tyler’s path took many turns before he discovered and thrived in the WordPress community.</p>\n\n\n\n<p>He was drawn to both the software and the community that surrounds it from his search for personal and professional freedom. He ultimately was able to combine his various business interests and people skills into professional marketing work.</p>\n\n\n\n<h2><strong>Using your skills to uncover your journey</strong></h2>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/people-of-wp-tyler-2.jpg?resize=632%2C758&ssl=1\" alt=\"Tyler Lau pictured sat on a chair using his mobile phone in his social media work\" class=\"wp-image-10118\" width=\"632\" height=\"758\" />\n\n\n\n<p>Tyler’s current role is as a Marketing Relationship Builder, based in Kansas, USA. His responsibilities span across all digital properties and products, leveraging his broad set of business and people skills.</p>\n\n\n\n<p>These skills are amplified by his creativity and adaptability. Tyler says that one reason he is always looking for new projects is his Attention Deficit Hyperactivity Disorder (ADHD), a diagnosis he received in 2005.</p>\n\n\n\n<p>In an industry built by programmers and developers who often have a strong sense of focus, Tyler felt that someone with ADHD wouldn’t be seen as a natural fit. He found the WordPress community to be a place where everyone can find the right spot for their unique skills. Tyler’s skill is people, and this has translated into many opportunities and responsibilities in his work life. His skills have also helped him give back to the WordPress community as a speaker and volunteer, and through multiple contributor days.</p>\n\n\n\n<h2><strong>Relationship-building as a career</strong></h2>\n\n\n\n<p>Most of Tyler’s experience was in the restaurant industry, and his resume did not exactly point to a career in tech. But the service industry actually prepared him well for everything he has taken on since.</p>\n\n\n\n<p>When he is at work events, he meets people from across the world and builds connections with them. As an extrovert, he enjoys this and couldn’t imagine a job where he was isolated from getting to know others and relationship-building.</p>\n\n\n\n<p>Understanding people and being able to operate in any setting are key competencies. Social skills and tact are useful for community building in the WordPress space too, and in Tyler’s life at different times it has been necessary for survival. </p>\n\n\n\n<h2><strong>The true meaning of freedom</strong></h2>\n\n\n\n<p>In the WordPress community, the concept of freedom comes up often. WordPress is built on GPL, free software, and open-source values. Practically speaking, anyone can work remotely or be their own boss to gain more freedom in work and life.&nbsp;Tyler feels that he never fitted into a traditional work mould. With his strong focus on freedom, he found this resonated with the freedom and opportunities he believes WordPress provides him and thousands of others.</p>\n\n\n\n<p>Tyler describes how in 2013 his ‘inner opportunist’ got him into trouble. After dropping out of college following a brain aneurysm, he needed capital to fund his first startup.&nbsp;He shares that he found a quick but unlawful way to make money. Alongside this between shifts as a waiter, he worked on prototypes for his first product. The company was growing fast, and to protect his patents and take research and development to the next level, he had to work hard. Everything came to a halt when some of the actions he took resulted in being sent to prison.  </p>\n\n\n\n<p>He says that meeting other inmates reminded him that he was in a much better situation than most. He was educated, well-off, loved, and knew he had a future once he was released. He found that many inmates never graduated from high school and were computer illiterate. While inside, Tyler taught subjects like science, math, writing, reading, and social studies. He found that due to the lack of skills and support, many inmates would struggle upon release. He believes getting the mental health support and job training needed to thrive after prison is not easy for many.</p>\n\n\n\n<p>“<em>There’s more to freedom than just being on the outside. You also need a sense of agency and enfranchisement,</em>” says Tyler. He considered his sense of purpose and support network were plenty to keep him going and was ready to take on his next (legal) business challenge as soon as he could.</p>\n\n\n\n<h2>Going forward positively&nbsp;</h2>\n\n\n\n<img width=\"632\" height=\"632\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/FF50DF21-38AA-4778-B465-C2DF0B441AD7.jpeg?resize=632%2C632&ssl=1\" alt=\"Tyler Lau portrait picture\" class=\"wp-image-10139\" />\n\n\n\n<p>The idea that your past doesn’t define you and you can choose to embrace it, is a key driver for Tyler.</p>\n\n\n\n<p>He describes himself as an outlier in many ways. He recalls how politics influenced his life from the day he was born. Tyler’s father is a semi-dissident Chinese visual anthropologist, his mother is an art professor who left her home country of Japan to break free from traditional Japanese gender roles. Tyler feels he inherited a lot of this fearlessness.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“<em>I’ve never fitted in, and yet this is what makes me able to adapt to most situations and relate to just about anyone. I embrace my eclectic, dissonant past and see beauty in the person those experiences shaped me to be</em>,” says Tyler.&nbsp;</p></blockquote>\n\n\n\n<p>Now, he’s able to put those skills to good use in the WordPress community and beyond.&nbsp;</p>\n\n\n\n<p>He says: “<em>Regardless of your physical abilities, mental health struggles, upbringing, and even your run-ins with the law, no one is excluded from carving their place in the WordPress industry</em>”.<br /></p>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p>Thank you to Tyler Lau (<a href=\"https://profiles.wordpress.org/tylermaximus/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>tylermaximus</a>) for sharing his #ContributorStory.</p>\n\n\n\n<p>Thanks to Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\">@lmurillom</a>), Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sthakor</a>), Olga Gleckler (<a href=\"https://profiles.wordpress.org/oglekler/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>oglekler</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>), Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a>), Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for working on the People of WordPress series.</p>\n\n\n\n<img src=\"https://lh3.googleusercontent.com/Y3odYTyvSfJbVxUxUWEgKxOprox2zxVwhk7_vdW-AIs4IlE-jK0Zt1itCj867x0dIAbIiK-VeuTLMZr6BjNEY0fkTf--4dT1hkLbnGtsPFNfyrVBYIN59IirTkNnqiQgqxk6E1MI\" alt=\"HeroPress logo\" />\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by&nbsp;</em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our&nbsp;<a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a>&nbsp;series.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress</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, 13 Apr 2021 13:47: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:28:\"webcommsat AbhaNonStopNewsUK\";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:100:\"WPTavern: Free Software Foundation Unrelenting on Stallman Reinstatement: “We Missed His Wisdom”\";s:7:\"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=115008\";s:7:\"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:231:\"https://wptavern.com/free-software-foundation-unrelenting-on-stallman-reinstatement-we-missed-his-wisdom?utm_source=rss&utm_medium=rss&utm_campaign=free-software-foundation-unrelenting-on-stallman-reinstatement-we-missed-his-wisdom\";s: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:8324:\"<p>The Free Software Foundation has <a href=\"https://www.fsf.org/news/statement-of-fsf-board-on-election-of-richard-stallman\">published</a> a public explanation of why they decided to reinstate Richard Stallman to the board of directors last month:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;The voting members of the Free Software Foundation, which include the board of directors, voted to appoint Richard Stallman to a board seat after several months of thorough discussion and thoughtful deliberation.</p><p>We decided to bring RMS back because we missed his wisdom. His historical, legal and technical acumen on free software is unrivaled. He has a deep sensitivity to the ways that technologies can contribute to both the enhancement and the diminution of basic human rights. His global network of connections is invaluable. He remains the most articulate philosopher and an unquestionably dedicated advocate of freedom in computing.&rdquo;</p></blockquote>\n\n\n\n<p>The board took responsibility for bungling the news of his election to a board seat, stating that the planned flow of information was not executed in a timely manner. When Stallman <a href=\"https://wptavern.com/free-software-community-condemns-richard-stallmans-reinstatement-to-fsf-board-of-directors\">announced his return to the board</a> at last month&rsquo;s LibrePlanet event, the free software community was not able to discern whether he did so with the board&rsquo;s permission. It took the FSF by surprise, polarized the community, and provoked organizations and corporations to publish statements condemning his reinstatement.</p>\n\n\n\n<p>The board admits that &ldquo;FSF staff should have been informed and consulted first,&rdquo; but follows it up by effectively downplaying his influence, stating that Stallman is &ldquo;an unpaid volunteer and subject to the organization&rsquo;s policies.&rdquo; </p>\n\n\n\n<p>The statement reads like a perplexing love letter for someone who struggles with social cues. It obscures most of the real issues outlined in an <a href=\"https://rms-open-letter.github.io/\">open letter</a> signed by many prominent members of the free software community.  The FSF board referenced a <a href=\"https://www.fsf.org/news/rms-addresses-the-free-software-community\">statement</a> from Stallman, published one minute prior, and claims that he has acknowledged his mistakes:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;He has sincere regrets, especially at how anger toward him personally has negatively impacted the reputation and mission of FSF. While his personal style remains troubling for some, a majority of the board feel his behavior has moderated and believe that his thinking strengthens the work of the FSF in pursuit of its mission.&rdquo;</p></blockquote>\n\n\n\n<p>The FSF board has officially confirmed that the majority of its leadership advocated for Stallman&rsquo;s return and see it as important in its aim &ldquo;to attract a new generation of activists for software freedom and to grow the movement.&rdquo; </p>\n\n\n\n<p><a href=\"https://www.fsf.org/news/rms-addresses-the-free-software-community\">Stallman&rsquo;s statement</a> identifies his past behaviors as something outside his control, saying it was &ldquo;not a choice&rdquo; and &ldquo;unavoidable:&rdquo;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Later in life, I discovered that some people had negative reactions to my behavior, which I did not even know about. Tending to be direct and honest with my thoughts, I sometimes made others uncomfortable or even offended them &mdash; especially women. This was not a choice: I didn&rsquo;t understand the problem enough to know which choices there were.</p><p>Sometimes I lost my temper because I didn&rsquo;t have the social skills to avoid it. Some people could cope with this; others were hurt. I apologize to each of them. Please direct your criticism at me,&nbsp;<a href=\"https://www.fsf.org/news/statement-of-fsf-board-on-election-of-richard-stallman\">not at the Free Software Foundation</a>.</p></blockquote>\n\n\n\n<p>He also attempted to explain his position regarding the 2019 controversy that prompted his <a href=\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\">resignation from the FSF board</a> and MIT&rsquo;s Computer Science and Artificial Intelligence Lab.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;It was right for me to talk about the injustice to Minsky, but it was tone-deaf that I didn&rsquo;t acknowledge as context the injustice that Epstein did to women or the pain that caused.</p><p>I&rsquo;ve learned something from this about how to be kind to people who have been hurt. In the future, that will help me be kind to people in other situations, which is what I hope to do.&rdquo;</p></blockquote>\n\n\n\n<p>This strategically intertwined pair of statements from Stallman and the FSF did little to change the community&rsquo;s perception of his reinstatement to the board. They seemed to have the opposite effect of inflaming those who opposed it in the first place.</p>\n\n\n\n<p>&ldquo;I&rsquo;m really grateful that the FSF board took the time to clarify this,&rdquo; Tock founder Brian Fitzpatrick <a href=\"https://twitter.com/therealfitz/status/1381656583554404353\">said</a>. &ldquo;This makes it crystal clear that they would rather have RMS around than become an inclusive and welcoming environment to more than half the people who write software. Toxic to the core.&rdquo;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Congratulations on getting RMS offering a non-apology for being tone deaf. You\'ve just inherited that skill.<br />It\'s time for that \"new generation of activists for software freedom\" to help another foundation grow.</p>&mdash; St&#11093;nehead (@stonehead) <a href=\"https://twitter.com/stonehead/status/1381647487178571776?ref_src=twsrc%5Etfw\">April 12, 2021</a></blockquote>\n</div>\n\n\n\n<p>The statements were met with considerable backlash, as they did little to assuage community concerns regarding Stallman&rsquo;s patterns of misconduct. More recently that includes his controversial remarks on rape, assault,&nbsp;and child sex trafficking, along with two decades of&nbsp;<a href=\"https://geekfeminism.wikia.org/wiki/Richard_Stallman\">behaviors and statements</a>&nbsp;that many have found to be disturbing and offensive. Whether these behaviors are motivated by malice or simply a lack of understanding the proper context, the damage to the FSF continues.</p>\n\n\n\n<p>Red Hat principle engineer Elana Hashman, former director of the Open Source Initiative, <a href=\"https://twitter.com/ehashdn/status/1381665600846528515\">published a thread</a> with suggestions for 501(c)(3) public charities the community can donate to as an alternative to the FSF, including The Software Freedom Conservancy, EFF, OSI, and Software in the Public Interest.</p>\n\n\n\n<p>Last week we <a href=\"https://wptavern.com/fsf-doubles-down-on-stallman-reinstatement-wordpress-does-not-support-his-return-to-the-board\">reported</a> that the WordPress project does not support Stallman&rsquo;s return to the FSF board of directors. Curiously, WordPress&rsquo; executive director Josepha Haden-Chomphosy published the <a href=\"https://josepha.blog/2021/04/02/on-recent-news-about-the-fsf-board-of-directors/\">statement</a> to her personal blog instead of on the project&rsquo;s website, but she confirmed it is WordPress&rsquo; official stance on Stallman&rsquo;s reinstatement. Since that time, the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> has quietly removed the Free Software Foundation from its list of inspirations. </p>\n\n\n\n<p>Many corporations and individuals have distanced themselves and pulled funding from the FSF, but it has not had much impact on the leadership of the organization. The FSF board seems confident in their decision to keep Stallman in place, despite openly admitting that &ldquo;his personal style remains troubling.&rdquo; When the organization&rsquo;s actions so sublimely repudiate its stated goals (to attract a new generation of activists for software freedom), it&rsquo;s easy to see why former supporters can no longer buy into the FSF&rsquo;s promises to improve transparency and accountability.</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, 13 Apr 2021 03:53:44 +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:69:\"WPTavern: Display Digital Sheet Music With the WordPress Block Editor\";s:7:\"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=115022\";s:7:\"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:183:\"https://wptavern.com/display-digital-sheet-music-with-the-wordpress-block-editor?utm_source=rss&utm_medium=rss&utm_campaign=display-digital-sheet-music-with-the-wordpress-block-editor\";s: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:4520:\"<img />OSMD plugin output on the front end.\n\n\n\n<p class=\"has-drop-cap\">PhonicScore, a company out of Vienna, recently released its <a href=\"https://wordpress.org/plugins/opensheetmusicdisplay/\">OpenSheetMusicDisplay (OSMD) plugin</a>. It is a WordPress block built for rendering digital sheet music in the browser.</p>\n\n\n\n<p>The OSMD plugin is built on top of the team&rsquo;s JavaScript library of the same name, a project officially released in 2016. It is a bridge between <a href=\"https://www.vexflow.com/\">VexFlow</a> and <a href=\"https://www.musicxml.com/\">MusicXML</a>. VexFlow is a JavaScript API for rendering music notation, and MusicXML is a standard open format for exchanging digital sheet music.</p>\n\n\n\n<p>&ldquo;As WordPress is one of the most popular CMS&rsquo; we decided to make an out-of-the-box solution that users could easily plug in their WP websites,&rdquo; wrote Marin Jurcic in the <a href=\"https://opensheetmusicdisplay.org/2016/09/19/hello-world-opensheetmusicdisplay-musicxml/\">announcement post</a>. &ldquo;This wasn&rsquo;t an easy build, lucky for us OSMD provided all the tools for the job. To make this happen we relied heavily on the latest OSMD release and bundled it with the plugin. To add the &lsquo;out-of-the-box features&rsquo; and get it working we used WordPress&rsquo;s framework/library &mdash; Javascript and PHP.&rdquo;</p>\n\n\n\n<p>This is the type of plugin that allows the beauty of the block editor to shine. A few years ago, such a feat would only have been possible via the shortcode system.  Users would have had to manually type in all of the shortcode&rsquo;s arguments &mdash; assuming they could remember them all &mdash; and preview the post to see what it would look like. Today, they can interact with and make changes directly to their sheet music&rsquo;s display from the editor. </p>\n\n\n\n<p>OSMD was never a WordPress-first project. It was a standalone library that the company decided to make available to WordPress. With the power of the block system, they were able to do that. One can only hope that we see investments in our community from similar projects now that the block editor has become more stable.</p>\n\n\n\n<p>We are barely digging beneath the surface of what will be possible in time. Blocks like OSMD build upon the optimism I had when the system was first unveiled.</p>\n\n\n\n<p>To use the plugin, users must simply insert the OpenSheetMusicDisplay block into their content canvas. It is located under the Embed category. From that point, they must select or upload an XML file via the block options sidebar (<code>.xml</code>, <code>.musicxml</code>, and <code>.mxl</code> files are supported). Dragging and dropping a file does not work in this version &mdash; <em>maybe a feature request for 2.0?</em></p>\n\n\n\n<img />OSMD block in the editor.\n\n\n\n<p>The &ldquo;Basic Options&rdquo; tab has several width and aspect ratio settings. For the most part, it is probably best to leave these at the defaults. However, this will depend on your theme and how much room it provides.</p>\n\n\n\n<p>The block does not currently support the standard wide-alignment system. Instead, it has a width option, allowing users to determine the front-end output. Because this is a non-standard option, it may not play well with all themes. Depending on how the user&rsquo;s active theme handles content width, they can get wildly different results.</p>\n\n\n\n<p>The &ldquo;Drawing Options&rdquo; tab is where users have more control over customizing the output. These settings allow users to determine what is &ldquo;drawn&rdquo; in the digital sheet music. One option is whether to draw the composer&rsquo;s name. Another is to output time signatures. With 10 settings in total, there is a lot to tinker with.</p>\n\n\n\n<p>The biggest issue I ran into with the plugin was with the editor freezing from time to time. It appeared that the block was trying to reload, even when I was working outside of it. This happened despite having unticked the &ldquo;Automatically Rerender on Change&rdquo; checkbox.</p>\n\n\n\n<p>Overall, this plugin should serve users who want to display sheet music well. It is simple to use and offers numerous customization options. The team has a <a href=\"https://opensheetmusicdisplay.github.io/demo/\">demo of the OSMD library</a> in action on their site.</p>\n\n\n\n<p>For those who are not inclined to share digital sheet music, well, we can all appreciate the genius of J.S. Bach&rsquo;s <em>Air</em>:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Apr 2021 21:16:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"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:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 08 May 2021 23:48:44 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sat, 08 May 2021 23:30:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20201017055008\";}','no'),(148,'finished_updating_comment_type','1','yes'),(151,'current_theme','Consultio','yes'),(152,'theme_mods_consultio','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:4:{s:7:\"primary\";i:48;s:9:\"menu-left\";i:41;s:10:\"menu-right\";i:42;s:9:\"secondary\";i:46;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(153,'theme_switched','','yes'),(154,'elementor_cpt_support','a:7:{i:0;s:4:\"page\";i:1;s:4:\"post\";i:2;s:9:\"portfolio\";i:3;s:7:\"service\";i:4;s:10:\"case-study\";i:5;s:6:\"footer\";i:6;s:12:\"ct-mega-menu\";}','yes'),(391,'woocommerce_meta_box_errors','a:0:{}','yes'),(392,'newsletter_diagnostic_cron_calls','a:100:{i:0;i:1619552298;i:1;i:1619552419;i:2;i:1619552539;i:3;i:1619553575;i:4;i:1619553636;i:5;i:1619553757;i:6;i:1619553878;i:7;i:1619554002;i:8;i:1619554123;i:9;i:1619554249;i:10;i:1619554377;i:11;i:1619554498;i:12;i:1619554619;i:13;i:1619554680;i:14;i:1619554741;i:15;i:1619554861;i:16;i:1619554982;i:17;i:1619555107;i:18;i:1619555228;i:19;i:1619555641;i:20;i:1619649557;i:21;i:1619815093;i:22;i:1619815101;i:23;i:1620041602;i:24;i:1620109933;i:25;i:1620142515;i:26;i:1620142525;i:27;i:1620189590;i:28;i:1620193485;i:29;i:1620343252;i:30;i:1620343855;i:31;i:1620343892;i:32;i:1620343966;i:33;i:1620344002;i:34;i:1620344031;i:35;i:1620344062;i:36;i:1620344128;i:37;i:1620344185;i:38;i:1620344243;i:39;i:1620344305;i:40;i:1620344425;i:41;i:1620365526;i:42;i:1620365542;i:43;i:1620366845;i:44;i:1620401605;i:45;i:1620401625;i:46;i:1620414328;i:47;i:1620452787;i:48;i:1620464202;i:49;i:1620467232;i:50;i:1620517618;i:51;i:1620517647;i:52;i:1620517704;i:53;i:1620517802;i:54;i:1620517823;i:55;i:1620517883;i:56;i:1620517947;i:57;i:1620518003;i:58;i:1620518027;i:59;i:1620518065;i:60;i:1620518122;i:61;i:1620518187;i:62;i:1620518247;i:63;i:1620518303;i:64;i:1620518326;i:65;i:1620518366;i:66;i:1620518403;i:67;i:1620518422;i:68;i:1620518507;i:69;i:1620518547;i:70;i:1620518605;i:71;i:1620518682;i:72;i:1620518725;i:73;i:1620518802;i:74;i:1620518853;i:75;i:1620518932;i:76;i:1620518988;i:77;i:1620519058;i:78;i:1620519087;i:79;i:1620519143;i:80;i:1620519204;i:81;i:1620519237;i:82;i:1620519273;i:83;i:1620519369;i:84;i:1620519384;i:85;i:1620519445;i:86;i:1620519503;i:87;i:1620519530;i:88;i:1620519547;i:89;i:1620519567;i:90;i:1620519627;i:91;i:1620519749;i:92;i:1620519863;i:93;i:1620519949;i:94;i:1620519997;i:95;i:1620520076;i:96;i:1620520165;i:97;i:1620520246;i:98;i:1620520366;i:99;i:1620520432;}','no'),(393,'newsletter_diagnostic_cron_data','a:3:{s:4:\"mean\";d:9680.34000000000014551915228366851806640625;s:3:\"max\";i:226501;s:3:\"min\";i:8;}','no'),(158,'wpcf7','a:2:{s:7:\"version\";s:3:\"5.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1617481093;s:7:\"version\";s:3:\"5.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(161,'sbi_statuses','a:3:{s:8:\"database\";a:1:{s:14:\"hashtag_column\";b:1;}s:13:\"first_install\";i:1617481129;s:4:\"gdpr\";a:1:{s:19:\"from_update_success\";b:1;}}','no'),(162,'sbi_usage_tracking','a:2:{s:7:\"enabled\";b:0;s:9:\"last_send\";i:0;}','yes'),(163,'newsletter_logger_secret','074c7eb7','yes'),(405,'wc_blocks_db_schema_version','260','yes'),(165,'newsletter_main_first_install_time','1617481094','no'),(166,'newsletter_main','a:32:{s:11:\"return_path\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"sender_email\";s:27:\"newsletter@dm117.dev34.info\";s:11:\"sender_name\";s:14:\"Dealers of the\";s:6:\"editor\";i:0;s:13:\"scheduler_max\";i:100;s:9:\"phpmailer\";i:0;s:5:\"debug\";i:0;s:5:\"track\";i:1;s:3:\"css\";s:0:\"\";s:12:\"css_disabled\";i:0;s:2:\"ip\";s:0:\"\";s:4:\"page\";i:0;s:19:\"disable_cron_notice\";i:0;s:13:\"do_shortcodes\";i:0;s:11:\"header_logo\";s:0:\"\";s:12:\"header_title\";s:14:\"Dealers of the\";s:10:\"header_sub\";s:7:\"Macabre\";s:12:\"footer_title\";s:0:\"\";s:14:\"footer_contact\";s:0:\"\";s:12:\"footer_legal\";s:0:\"\";s:12:\"facebook_url\";s:0:\"\";s:11:\"twitter_url\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:13:\"pinterest_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:10:\"tumblr_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:9:\"vimeo_url\";s:0:\"\";s:14:\"soundcloud_url\";s:0:\"\";s:12:\"telegram_url\";s:0:\"\";s:6:\"vk_url\";s:0:\"\";}','yes'),(167,'newsletter_main_info','a:17:{s:11:\"header_logo\";a:1:{s:2:\"id\";i:0;}s:12:\"header_title\";s:14:\"Dealers of the\";s:10:\"header_sub\";s:7:\"Macabre\";s:12:\"footer_title\";s:0:\"\";s:14:\"footer_contact\";s:0:\"\";s:12:\"footer_legal\";s:0:\"\";s:12:\"facebook_url\";s:0:\"\";s:11:\"twitter_url\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:13:\"pinterest_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:10:\"tumblr_url\";s:0:\"\";s:11:\"youtube_url\";s:0:\"\";s:9:\"vimeo_url\";s:0:\"\";s:14:\"soundcloud_url\";s:0:\"\";s:12:\"telegram_url\";s:0:\"\";s:6:\"vk_url\";s:0:\"\";}','yes'),(168,'newsletter_main_smtp','a:7:{s:7:\"enabled\";i:0;s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"port\";i:25;s:6:\"secure\";s:0:\"\";s:12:\"ssl_insecure\";i:0;}','yes'),(169,'newsletter_main_version','1.6.6','yes'),(170,'newsletter_subscription_first_install_time','1617481094','no'),(171,'newsletter','a:14:{s:14:\"noconfirmation\";i:1;s:12:\"notify_email\";s:19:\"alex@inspirable.com\";s:8:\"multiple\";i:1;s:6:\"notify\";i:0;s:10:\"error_text\";s:87:\"<p>This email address is already subscribed, please contact the site administrator.</p>\";s:17:\"subscription_text\";s:19:\"{subscription_form}\";s:17:\"confirmation_text\";s:104:\"<p>A confirmation email is on the way. Follow the instructions and check the spam folder. Thank you.</p>\";s:20:\"confirmation_subject\";s:32:\"Please confirm your subscription\";s:21:\"confirmation_tracking\";s:0:\"\";s:20:\"confirmation_message\";s:94:\"<p>Please confirm your subscription <a href=\"{subscription_confirm_url}\">clicking here</a></p>\";s:14:\"confirmed_text\";s:43:\"<p>Your subscription has been confirmed</p>\";s:17:\"confirmed_subject\";s:7:\"Welcome\";s:17:\"confirmed_message\";s:130:\"<p>This message confirms your subscription to our newsletter. Thank you!</p><hr><p><a href=\"{profile_url}\">Change your profile</p>\";s:18:\"confirmed_tracking\";s:0:\"\";}','yes'),(176,'newsletter_subscription_version','2.2.7','yes'),(177,'newsletter_unsubscription_first_install_time','1617481094','no'),(178,'newsletter_unsubscription','a:6:{s:16:\"unsubscribe_text\";s:103:\"<p>Please confirm you want to unsubscribe <a href=\"{unsubscription_confirm_url}\">clicking here</a>.</p>\";s:10:\"error_text\";s:99:\"<p>Subscriber not found, it probably has already been removed. No further actions are required.</p>\";s:17:\"unsubscribed_text\";s:124:\"<p>Your subscription has been deleted. If that was an error you can <a href=\"{reactivate_url}\">subscribe again here</a>.</p>\";s:20:\"unsubscribed_subject\";s:7:\"Goodbye\";s:20:\"unsubscribed_message\";s:87:\"<p>This message confirms that you have unsubscribed from our newsletter. Thank you.</p>\";s:16:\"reactivated_text\";s:46:\"<p>Your subscription has been reactivated.</p>\";}','yes'),(172,'newsletter_subscription_lists','a:240:{s:6:\"list_1\";s:0:\"\";s:13:\"list_1_status\";i:0;s:14:\"list_1_checked\";i:0;s:13:\"list_1_forced\";i:0;s:19:\"list_1_subscription\";i:0;s:14:\"list_1_profile\";i:0;s:6:\"list_2\";s:0:\"\";s:13:\"list_2_status\";i:0;s:14:\"list_2_checked\";i:0;s:13:\"list_2_forced\";i:0;s:19:\"list_2_subscription\";i:0;s:14:\"list_2_profile\";i:0;s:6:\"list_3\";s:0:\"\";s:13:\"list_3_status\";i:0;s:14:\"list_3_checked\";i:0;s:13:\"list_3_forced\";i:0;s:19:\"list_3_subscription\";i:0;s:14:\"list_3_profile\";i:0;s:6:\"list_4\";s:0:\"\";s:13:\"list_4_status\";i:0;s:14:\"list_4_checked\";i:0;s:13:\"list_4_forced\";i:0;s:19:\"list_4_subscription\";i:0;s:14:\"list_4_profile\";i:0;s:6:\"list_5\";s:0:\"\";s:13:\"list_5_status\";i:0;s:14:\"list_5_checked\";i:0;s:13:\"list_5_forced\";i:0;s:19:\"list_5_subscription\";i:0;s:14:\"list_5_profile\";i:0;s:6:\"list_6\";s:0:\"\";s:13:\"list_6_status\";i:0;s:14:\"list_6_checked\";i:0;s:13:\"list_6_forced\";i:0;s:19:\"list_6_subscription\";i:0;s:14:\"list_6_profile\";i:0;s:6:\"list_7\";s:0:\"\";s:13:\"list_7_status\";i:0;s:14:\"list_7_checked\";i:0;s:13:\"list_7_forced\";i:0;s:19:\"list_7_subscription\";i:0;s:14:\"list_7_profile\";i:0;s:6:\"list_8\";s:0:\"\";s:13:\"list_8_status\";i:0;s:14:\"list_8_checked\";i:0;s:13:\"list_8_forced\";i:0;s:19:\"list_8_subscription\";i:0;s:14:\"list_8_profile\";i:0;s:6:\"list_9\";s:0:\"\";s:13:\"list_9_status\";i:0;s:14:\"list_9_checked\";i:0;s:13:\"list_9_forced\";i:0;s:19:\"list_9_subscription\";i:0;s:14:\"list_9_profile\";i:0;s:7:\"list_10\";s:0:\"\";s:14:\"list_10_status\";i:0;s:15:\"list_10_checked\";i:0;s:14:\"list_10_forced\";i:0;s:20:\"list_10_subscription\";i:0;s:15:\"list_10_profile\";i:0;s:7:\"list_11\";s:0:\"\";s:14:\"list_11_status\";i:0;s:15:\"list_11_checked\";i:0;s:14:\"list_11_forced\";i:0;s:20:\"list_11_subscription\";i:0;s:15:\"list_11_profile\";i:0;s:7:\"list_12\";s:0:\"\";s:14:\"list_12_status\";i:0;s:15:\"list_12_checked\";i:0;s:14:\"list_12_forced\";i:0;s:20:\"list_12_subscription\";i:0;s:15:\"list_12_profile\";i:0;s:7:\"list_13\";s:0:\"\";s:14:\"list_13_status\";i:0;s:15:\"list_13_checked\";i:0;s:14:\"list_13_forced\";i:0;s:20:\"list_13_subscription\";i:0;s:15:\"list_13_profile\";i:0;s:7:\"list_14\";s:0:\"\";s:14:\"list_14_status\";i:0;s:15:\"list_14_checked\";i:0;s:14:\"list_14_forced\";i:0;s:20:\"list_14_subscription\";i:0;s:15:\"list_14_profile\";i:0;s:7:\"list_15\";s:0:\"\";s:14:\"list_15_status\";i:0;s:15:\"list_15_checked\";i:0;s:14:\"list_15_forced\";i:0;s:20:\"list_15_subscription\";i:0;s:15:\"list_15_profile\";i:0;s:7:\"list_16\";s:0:\"\";s:14:\"list_16_status\";i:0;s:15:\"list_16_checked\";i:0;s:14:\"list_16_forced\";i:0;s:20:\"list_16_subscription\";i:0;s:15:\"list_16_profile\";i:0;s:7:\"list_17\";s:0:\"\";s:14:\"list_17_status\";i:0;s:15:\"list_17_checked\";i:0;s:14:\"list_17_forced\";i:0;s:20:\"list_17_subscription\";i:0;s:15:\"list_17_profile\";i:0;s:7:\"list_18\";s:0:\"\";s:14:\"list_18_status\";i:0;s:15:\"list_18_checked\";i:0;s:14:\"list_18_forced\";i:0;s:20:\"list_18_subscription\";i:0;s:15:\"list_18_profile\";i:0;s:7:\"list_19\";s:0:\"\";s:14:\"list_19_status\";i:0;s:15:\"list_19_checked\";i:0;s:14:\"list_19_forced\";i:0;s:20:\"list_19_subscription\";i:0;s:15:\"list_19_profile\";i:0;s:7:\"list_20\";s:0:\"\";s:14:\"list_20_status\";i:0;s:15:\"list_20_checked\";i:0;s:14:\"list_20_forced\";i:0;s:20:\"list_20_subscription\";i:0;s:15:\"list_20_profile\";i:0;s:7:\"list_21\";s:0:\"\";s:14:\"list_21_status\";i:0;s:15:\"list_21_checked\";i:0;s:14:\"list_21_forced\";i:0;s:20:\"list_21_subscription\";i:0;s:15:\"list_21_profile\";i:0;s:7:\"list_22\";s:0:\"\";s:14:\"list_22_status\";i:0;s:15:\"list_22_checked\";i:0;s:14:\"list_22_forced\";i:0;s:20:\"list_22_subscription\";i:0;s:15:\"list_22_profile\";i:0;s:7:\"list_23\";s:0:\"\";s:14:\"list_23_status\";i:0;s:15:\"list_23_checked\";i:0;s:14:\"list_23_forced\";i:0;s:20:\"list_23_subscription\";i:0;s:15:\"list_23_profile\";i:0;s:7:\"list_24\";s:0:\"\";s:14:\"list_24_status\";i:0;s:15:\"list_24_checked\";i:0;s:14:\"list_24_forced\";i:0;s:20:\"list_24_subscription\";i:0;s:15:\"list_24_profile\";i:0;s:7:\"list_25\";s:0:\"\";s:14:\"list_25_status\";i:0;s:15:\"list_25_checked\";i:0;s:14:\"list_25_forced\";i:0;s:20:\"list_25_subscription\";i:0;s:15:\"list_25_profile\";i:0;s:7:\"list_26\";s:0:\"\";s:14:\"list_26_status\";i:0;s:15:\"list_26_checked\";i:0;s:14:\"list_26_forced\";i:0;s:20:\"list_26_subscription\";i:0;s:15:\"list_26_profile\";i:0;s:7:\"list_27\";s:0:\"\";s:14:\"list_27_status\";i:0;s:15:\"list_27_checked\";i:0;s:14:\"list_27_forced\";i:0;s:20:\"list_27_subscription\";i:0;s:15:\"list_27_profile\";i:0;s:7:\"list_28\";s:0:\"\";s:14:\"list_28_status\";i:0;s:15:\"list_28_checked\";i:0;s:14:\"list_28_forced\";i:0;s:20:\"list_28_subscription\";i:0;s:15:\"list_28_profile\";i:0;s:7:\"list_29\";s:0:\"\";s:14:\"list_29_status\";i:0;s:15:\"list_29_checked\";i:0;s:14:\"list_29_forced\";i:0;s:20:\"list_29_subscription\";i:0;s:15:\"list_29_profile\";i:0;s:7:\"list_30\";s:0:\"\";s:14:\"list_30_status\";i:0;s:15:\"list_30_checked\";i:0;s:14:\"list_30_forced\";i:0;s:20:\"list_30_subscription\";i:0;s:15:\"list_30_profile\";i:0;s:7:\"list_31\";s:0:\"\";s:14:\"list_31_status\";i:0;s:15:\"list_31_checked\";i:0;s:14:\"list_31_forced\";i:0;s:20:\"list_31_subscription\";i:0;s:15:\"list_31_profile\";i:0;s:7:\"list_32\";s:0:\"\";s:14:\"list_32_status\";i:0;s:15:\"list_32_checked\";i:0;s:14:\"list_32_forced\";i:0;s:20:\"list_32_subscription\";i:0;s:15:\"list_32_profile\";i:0;s:7:\"list_33\";s:0:\"\";s:14:\"list_33_status\";i:0;s:15:\"list_33_checked\";i:0;s:14:\"list_33_forced\";i:0;s:20:\"list_33_subscription\";i:0;s:15:\"list_33_profile\";i:0;s:7:\"list_34\";s:0:\"\";s:14:\"list_34_status\";i:0;s:15:\"list_34_checked\";i:0;s:14:\"list_34_forced\";i:0;s:20:\"list_34_subscription\";i:0;s:15:\"list_34_profile\";i:0;s:7:\"list_35\";s:0:\"\";s:14:\"list_35_status\";i:0;s:15:\"list_35_checked\";i:0;s:14:\"list_35_forced\";i:0;s:20:\"list_35_subscription\";i:0;s:15:\"list_35_profile\";i:0;s:7:\"list_36\";s:0:\"\";s:14:\"list_36_status\";i:0;s:15:\"list_36_checked\";i:0;s:14:\"list_36_forced\";i:0;s:20:\"list_36_subscription\";i:0;s:15:\"list_36_profile\";i:0;s:7:\"list_37\";s:0:\"\";s:14:\"list_37_status\";i:0;s:15:\"list_37_checked\";i:0;s:14:\"list_37_forced\";i:0;s:20:\"list_37_subscription\";i:0;s:15:\"list_37_profile\";i:0;s:7:\"list_38\";s:0:\"\";s:14:\"list_38_status\";i:0;s:15:\"list_38_checked\";i:0;s:14:\"list_38_forced\";i:0;s:20:\"list_38_subscription\";i:0;s:15:\"list_38_profile\";i:0;s:7:\"list_39\";s:0:\"\";s:14:\"list_39_status\";i:0;s:15:\"list_39_checked\";i:0;s:14:\"list_39_forced\";i:0;s:20:\"list_39_subscription\";i:0;s:15:\"list_39_profile\";i:0;s:7:\"list_40\";s:0:\"\";s:14:\"list_40_status\";i:0;s:15:\"list_40_checked\";i:0;s:14:\"list_40_forced\";i:0;s:20:\"list_40_subscription\";i:0;s:15:\"list_40_profile\";i:0;}','yes'),(173,'newsletter_subscription_template','a:1:{s:8:\"template\";s:2365:\"<!DOCTYPE html>\n<html>\n    <head>\n        <!-- General styles, not used by all email clients -->\n        <style type=\"text/css\" media=\"all\">\n            a {\n                text-decoration: none;\n                color: #0088cc;\n            }\n            hr {\n                border-top: 1px solid #999;\n            }\n        </style>\n    </head>\n\n    <!-- KEEP THE LAYOUT SIMPLE: THOSE ARE SERVICE MESSAGES. -->\n    <body style=\"margin: 0; padding: 0;\">\n\n        <!-- Top title with dark background -->\n        <table style=\"background-color: #444; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\n            <tr>\n                <td style=\"padding: 20px; text-align: center; font-family: sans-serif; color: #fff; font-size: 28px\">\n                    {blog_title}\n                </td>\n            </tr>\n        </table>\n\n        <!-- Main table 100% wide with background color #eee -->    \n        <table style=\"background-color: #eee; width: 100%;\">\n            <tr>\n                <td align=\"center\" style=\"padding: 15px;\">\n\n                    <!-- Content table with backgdound color #fff, width 500px -->\n                    <table style=\"background-color: #fff; max-width: 600px; width: 100%; border: 1px solid #ddd;\">\n                        <tr>\n                            <td style=\"padding: 15px; color: #333; font-size: 16px; font-family: sans-serif\">\n                                <!-- The \"message\" tag below is replaced with one of confirmation, welcome or goodbye messages -->\n                                <!-- Messages content can be configured on Newsletter List Building panels --> \n\n                                {message}\n\n                                <hr>\n                                <!-- Signature if not already added to single messages (surround with <p>) -->\n                                <p>\n                                    <small>\n                                        <a href=\"{blog_url}\">{blog_url}</a><br>\n                                        {company_name}<br>\n                                        {company_address}\n                                    </small>\n                                </p>\n                                \n\n                            </td>\n                        </tr>\n                    </table>\n\n                </td>\n            </tr>\n        </table>\n\n    </body>\n</html>\";}','yes'),(174,'newsletter_profile','a:180:{s:5:\"email\";s:5:\"Email\";s:11:\"email_error\";s:28:\"Email address is not correct\";s:4:\"name\";s:23:\"First name or full name\";s:11:\"name_status\";i:0;s:10:\"name_rules\";i:0;s:7:\"surname\";s:9:\"Last name\";s:14:\"surname_status\";i:0;s:10:\"sex_status\";i:0;s:3:\"sex\";s:3:\"I\'m\";s:7:\"privacy\";s:44:\"By continuing, you accept the privacy policy\";s:14:\"privacy_status\";i:0;s:11:\"privacy_url\";s:0:\"\";s:18:\"privacy_use_wp_url\";i:0;s:9:\"subscribe\";s:9:\"Subscribe\";s:12:\"title_female\";s:3:\"Ms.\";s:10:\"title_male\";s:3:\"Mr.\";s:10:\"title_none\";s:4:\"Dear\";s:8:\"sex_male\";s:3:\"Man\";s:10:\"sex_female\";s:5:\"Woman\";s:8:\"sex_none\";s:13:\"Not specified\";s:16:\"profile_1_status\";i:0;s:9:\"profile_1\";s:0:\"\";s:14:\"profile_1_type\";s:4:\"text\";s:21:\"profile_1_placeholder\";s:0:\"\";s:15:\"profile_1_rules\";i:0;s:17:\"profile_1_options\";s:0:\"\";s:16:\"profile_2_status\";i:0;s:9:\"profile_2\";s:0:\"\";s:14:\"profile_2_type\";s:4:\"text\";s:21:\"profile_2_placeholder\";s:0:\"\";s:15:\"profile_2_rules\";i:0;s:17:\"profile_2_options\";s:0:\"\";s:16:\"profile_3_status\";i:0;s:9:\"profile_3\";s:0:\"\";s:14:\"profile_3_type\";s:4:\"text\";s:21:\"profile_3_placeholder\";s:0:\"\";s:15:\"profile_3_rules\";i:0;s:17:\"profile_3_options\";s:0:\"\";s:16:\"profile_4_status\";i:0;s:9:\"profile_4\";s:0:\"\";s:14:\"profile_4_type\";s:4:\"text\";s:21:\"profile_4_placeholder\";s:0:\"\";s:15:\"profile_4_rules\";i:0;s:17:\"profile_4_options\";s:0:\"\";s:16:\"profile_5_status\";i:0;s:9:\"profile_5\";s:0:\"\";s:14:\"profile_5_type\";s:4:\"text\";s:21:\"profile_5_placeholder\";s:0:\"\";s:15:\"profile_5_rules\";i:0;s:17:\"profile_5_options\";s:0:\"\";s:16:\"profile_6_status\";i:0;s:9:\"profile_6\";s:0:\"\";s:14:\"profile_6_type\";s:4:\"text\";s:21:\"profile_6_placeholder\";s:0:\"\";s:15:\"profile_6_rules\";i:0;s:17:\"profile_6_options\";s:0:\"\";s:16:\"profile_7_status\";i:0;s:9:\"profile_7\";s:0:\"\";s:14:\"profile_7_type\";s:4:\"text\";s:21:\"profile_7_placeholder\";s:0:\"\";s:15:\"profile_7_rules\";i:0;s:17:\"profile_7_options\";s:0:\"\";s:16:\"profile_8_status\";i:0;s:9:\"profile_8\";s:0:\"\";s:14:\"profile_8_type\";s:4:\"text\";s:21:\"profile_8_placeholder\";s:0:\"\";s:15:\"profile_8_rules\";i:0;s:17:\"profile_8_options\";s:0:\"\";s:16:\"profile_9_status\";i:0;s:9:\"profile_9\";s:0:\"\";s:14:\"profile_9_type\";s:4:\"text\";s:21:\"profile_9_placeholder\";s:0:\"\";s:15:\"profile_9_rules\";i:0;s:17:\"profile_9_options\";s:0:\"\";s:17:\"profile_10_status\";i:0;s:10:\"profile_10\";s:0:\"\";s:15:\"profile_10_type\";s:4:\"text\";s:22:\"profile_10_placeholder\";s:0:\"\";s:16:\"profile_10_rules\";i:0;s:18:\"profile_10_options\";s:0:\"\";s:17:\"profile_11_status\";i:0;s:10:\"profile_11\";s:0:\"\";s:15:\"profile_11_type\";s:4:\"text\";s:22:\"profile_11_placeholder\";s:0:\"\";s:16:\"profile_11_rules\";i:0;s:18:\"profile_11_options\";s:0:\"\";s:17:\"profile_12_status\";i:0;s:10:\"profile_12\";s:0:\"\";s:15:\"profile_12_type\";s:4:\"text\";s:22:\"profile_12_placeholder\";s:0:\"\";s:16:\"profile_12_rules\";i:0;s:18:\"profile_12_options\";s:0:\"\";s:17:\"profile_13_status\";i:0;s:10:\"profile_13\";s:0:\"\";s:15:\"profile_13_type\";s:4:\"text\";s:22:\"profile_13_placeholder\";s:0:\"\";s:16:\"profile_13_rules\";i:0;s:18:\"profile_13_options\";s:0:\"\";s:17:\"profile_14_status\";i:0;s:10:\"profile_14\";s:0:\"\";s:15:\"profile_14_type\";s:4:\"text\";s:22:\"profile_14_placeholder\";s:0:\"\";s:16:\"profile_14_rules\";i:0;s:18:\"profile_14_options\";s:0:\"\";s:17:\"profile_15_status\";i:0;s:10:\"profile_15\";s:0:\"\";s:15:\"profile_15_type\";s:4:\"text\";s:22:\"profile_15_placeholder\";s:0:\"\";s:16:\"profile_15_rules\";i:0;s:18:\"profile_15_options\";s:0:\"\";s:17:\"profile_16_status\";i:0;s:10:\"profile_16\";s:0:\"\";s:15:\"profile_16_type\";s:4:\"text\";s:22:\"profile_16_placeholder\";s:0:\"\";s:16:\"profile_16_rules\";i:0;s:18:\"profile_16_options\";s:0:\"\";s:17:\"profile_17_status\";i:0;s:10:\"profile_17\";s:0:\"\";s:15:\"profile_17_type\";s:4:\"text\";s:22:\"profile_17_placeholder\";s:0:\"\";s:16:\"profile_17_rules\";i:0;s:18:\"profile_17_options\";s:0:\"\";s:17:\"profile_18_status\";i:0;s:10:\"profile_18\";s:0:\"\";s:15:\"profile_18_type\";s:4:\"text\";s:22:\"profile_18_placeholder\";s:0:\"\";s:16:\"profile_18_rules\";i:0;s:18:\"profile_18_options\";s:0:\"\";s:17:\"profile_19_status\";i:0;s:10:\"profile_19\";s:0:\"\";s:15:\"profile_19_type\";s:4:\"text\";s:22:\"profile_19_placeholder\";s:0:\"\";s:16:\"profile_19_rules\";i:0;s:18:\"profile_19_options\";s:0:\"\";s:17:\"profile_20_status\";i:0;s:10:\"profile_20\";s:0:\"\";s:15:\"profile_20_type\";s:4:\"text\";s:22:\"profile_20_placeholder\";s:0:\"\";s:16:\"profile_20_rules\";i:0;s:18:\"profile_20_options\";s:0:\"\";s:13:\"list_1_forced\";i:0;s:13:\"list_2_forced\";i:0;s:13:\"list_3_forced\";i:0;s:13:\"list_4_forced\";i:0;s:13:\"list_5_forced\";i:0;s:13:\"list_6_forced\";i:0;s:13:\"list_7_forced\";i:0;s:13:\"list_8_forced\";i:0;s:13:\"list_9_forced\";i:0;s:14:\"list_10_forced\";i:0;s:14:\"list_11_forced\";i:0;s:14:\"list_12_forced\";i:0;s:14:\"list_13_forced\";i:0;s:14:\"list_14_forced\";i:0;s:14:\"list_15_forced\";i:0;s:14:\"list_16_forced\";i:0;s:14:\"list_17_forced\";i:0;s:14:\"list_18_forced\";i:0;s:14:\"list_19_forced\";i:0;s:14:\"list_20_forced\";i:0;s:14:\"list_21_forced\";i:0;s:14:\"list_22_forced\";i:0;s:14:\"list_23_forced\";i:0;s:14:\"list_24_forced\";i:0;s:14:\"list_25_forced\";i:0;s:14:\"list_26_forced\";i:0;s:14:\"list_27_forced\";i:0;s:14:\"list_28_forced\";i:0;s:14:\"list_29_forced\";i:0;s:14:\"list_30_forced\";i:0;s:14:\"list_31_forced\";i:0;s:14:\"list_32_forced\";i:0;s:14:\"list_33_forced\";i:0;s:14:\"list_34_forced\";i:0;s:14:\"list_35_forced\";i:0;s:14:\"list_36_forced\";i:0;s:14:\"list_37_forced\";i:0;s:14:\"list_38_forced\";i:0;s:14:\"list_39_forced\";i:0;s:14:\"list_40_forced\";i:0;}','yes'),(175,'newsletter_subscription_antibot','a:6:{s:12:\"ip_blacklist\";a:0:{}s:17:\"address_blacklist\";a:0:{}s:9:\"antiflood\";i:60;s:7:\"akismet\";i:0;s:7:\"captcha\";i:0;s:8:\"disabled\";i:0;}','yes'),(179,'newsletter_unsubscription_version','1.0.3','yes'),(180,'newsletter_profile_first_install_time','1617481094','no'),(181,'newsletter_profile_main','a:8:{s:4:\"text\";s:188:\"{profile_form}\n    <p>If you change your email address, a confirmation email will be sent to activate it.</p>\n    <p><a href=\"{unsubscription_confirm_url}\">Cancel your subscription</a></p>\";s:13:\"email_changed\";s:81:\"Your email has been changed, an activation email has been sent with instructions.\";s:5:\"error\";s:42:\"Your email is not valid or already in use.\";s:10:\"save_label\";s:4:\"Save\";s:13:\"privacy_label\";s:21:\"Read our privacy note\";s:5:\"saved\";s:14:\"Profile saved.\";s:18:\"export_newsletters\";i:0;s:3:\"url\";s:0:\"\";}','yes'),(182,'newsletter_profile_version','1.1.0','yes'),(183,'newsletter_emails_first_install_time','1617481094','no'),(184,'newsletter_emails','a:1:{s:5:\"theme\";s:7:\"default\";}','yes'),(185,'newsletter_emails_theme_default','a:0:{}','no'),(186,'newsletter_emails_version','1.1.5','yes'),(187,'newsletter_users_first_install_time','1617481094','no'),(188,'newsletter_users','a:0:{}','yes'),(189,'newsletter_users_version','1.3.0','yes'),(190,'newsletter_statistics_first_install_time','1617481094','no'),(191,'newsletter_statistics','a:1:{s:3:\"key\";s:32:\"d39781fada9d45fbb0567d9b5483382a\";}','yes'),(192,'newsletter_statistics_version','1.2.8','yes'),(193,'newsletter_install_time','1617481094','no'),(194,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:16:\"themepunch.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(195,'revslider_server_refresh','1620109918','yes'),(196,'revslider-update-check-short','1620517625','yes'),(197,'revslider-connection','1','yes'),(198,'revslider-update-hash','c2878896da439152772e4aacf194c1c7','yes'),(199,'revslider-latest-version','6.4.11','yes'),(200,'revslider-stable-version','4.2.0','yes'),(201,'revslider-notices','a:1:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:6:\"6.4.10\";s:4:\"text\";s:316:\"<div style=\"display: block; background-color: #1C0950; text-align: \ncenter;\"><a \nhref=\"https://mailchi.mp/sliderrevolution/the-update-your-website-deserves\"\n target=\"_blank\"><img alt=\"wow\" src=\"//updates.themepunch-ext-a.tools/banners/6411_banner.jpg\" width=\"960\" height=\"250\" style=\"margin-bottom: -5px;\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6411-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}}','yes'),(202,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(203,'rs-addons-counter','30','yes'),(204,'revslider-addons','O:8:\"stdClass\":30:{s:22:\"revslider-backup-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.4.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"2.1.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:6:\"6.2.23\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"2.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"2.2.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"2.1.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"2.2.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.3.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"2.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:6:\"6.2.50\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"2.2.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"2.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}}','yes'),(205,'revslider-library-check','1620189594','yes'),(206,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(207,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(208,'revslider-templates-check','1620452801','yes'),(209,'revslider-templates-hash','b34e16da992470421084a8b82c104a98','yes'),(210,'rs-templates-new','','no'),(212,'rs-templates-counter','0','no'),(213,'revslider_table_version','1.0.9','yes'),(214,'action_scheduler_hybrid_store_demarkation','7','yes'),(215,'schema-ActionScheduler_StoreSchema','3.0.1617481102','yes'),(216,'schema-ActionScheduler_LoggerSchema','2.0.1617481102','yes'),(219,'woocommerce_schema_version','430','yes'),(220,'woocommerce_store_address','','yes'),(221,'woocommerce_store_address_2','','yes'),(222,'woocommerce_store_city','','yes'),(223,'woocommerce_default_country','GB','yes'),(224,'woocommerce_store_postcode','','yes'),(225,'woocommerce_allowed_countries','all','yes'),(226,'woocommerce_all_except_countries','','yes'),(227,'woocommerce_specific_allowed_countries','','yes'),(228,'woocommerce_ship_to_countries','','yes'),(229,'woocommerce_specific_ship_to_countries','','yes'),(230,'woocommerce_default_customer_address','base','yes'),(231,'woocommerce_calc_taxes','no','yes'),(232,'woocommerce_enable_coupons','yes','yes'),(233,'woocommerce_calc_discounts_sequentially','no','no'),(234,'woocommerce_currency','GBP','yes'),(235,'woocommerce_currency_pos','left','yes'),(236,'woocommerce_price_thousand_sep',',','yes'),(237,'woocommerce_price_decimal_sep','.','yes'),(238,'woocommerce_price_num_decimals','2','yes'),(239,'woocommerce_shop_page_id','8','yes'),(240,'woocommerce_cart_redirect_after_add','no','yes'),(241,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(242,'woocommerce_placeholder_image','7','yes'),(243,'woocommerce_weight_unit','kg','yes'),(244,'woocommerce_dimension_unit','cm','yes'),(245,'woocommerce_enable_reviews','yes','yes'),(246,'woocommerce_review_rating_verification_label','yes','no'),(247,'woocommerce_review_rating_verification_required','no','no'),(248,'woocommerce_enable_review_rating','yes','yes'),(249,'woocommerce_review_rating_required','yes','no'),(250,'woocommerce_manage_stock','yes','yes'),(251,'woocommerce_hold_stock_minutes','60','no'),(252,'woocommerce_notify_low_stock','yes','no'),(253,'woocommerce_notify_no_stock','yes','no'),(254,'woocommerce_stock_email_recipient','alex@inspirable.com','no'),(255,'woocommerce_notify_low_stock_amount','2','no'),(256,'woocommerce_notify_no_stock_amount','0','yes'),(257,'woocommerce_hide_out_of_stock_items','no','yes'),(258,'woocommerce_stock_format','','yes'),(259,'woocommerce_file_download_method','force','no'),(260,'woocommerce_downloads_require_login','no','no'),(261,'woocommerce_downloads_grant_access_after_payment','yes','no'),(262,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(263,'woocommerce_prices_include_tax','no','yes'),(264,'woocommerce_tax_based_on','shipping','yes'),(265,'woocommerce_shipping_tax_class','inherit','yes'),(266,'woocommerce_tax_round_at_subtotal','no','yes'),(267,'woocommerce_tax_classes','','yes'),(268,'woocommerce_tax_display_shop','excl','yes'),(269,'woocommerce_tax_display_cart','excl','yes'),(270,'woocommerce_price_display_suffix','','yes'),(271,'woocommerce_tax_total_display','itemized','no'),(272,'woocommerce_enable_shipping_calc','yes','no'),(273,'woocommerce_shipping_cost_requires_address','no','yes'),(274,'woocommerce_ship_to_destination','billing','no'),(275,'woocommerce_shipping_debug_mode','no','yes'),(276,'woocommerce_enable_guest_checkout','yes','no'),(277,'woocommerce_enable_checkout_login_reminder','no','no'),(278,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(279,'woocommerce_enable_myaccount_registration','no','no'),(280,'woocommerce_registration_generate_username','yes','no'),(281,'woocommerce_registration_generate_password','yes','no'),(282,'woocommerce_erasure_request_removes_order_data','no','no'),(283,'woocommerce_erasure_request_removes_download_data','no','no'),(284,'woocommerce_allow_bulk_remove_personal_data','no','no'),(285,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(286,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(287,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(288,'woocommerce_trash_pending_orders','','no'),(289,'woocommerce_trash_failed_orders','','no'),(290,'woocommerce_trash_cancelled_orders','','no'),(291,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(292,'woocommerce_email_from_name','Dealers of the','no'),(293,'woocommerce_email_from_address','alex@inspirable.com','no'),(294,'woocommerce_email_header_image','','no'),(295,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(296,'woocommerce_email_base_color','#96588a','no'),(297,'woocommerce_email_background_color','#f7f7f7','no'),(298,'woocommerce_email_body_background_color','#ffffff','no'),(299,'woocommerce_email_text_color','#3c3c3c','no'),(300,'woocommerce_merchant_email_notifications','no','no'),(301,'woocommerce_cart_page_id','9','no'),(302,'woocommerce_checkout_page_id','10','no'),(303,'woocommerce_myaccount_page_id','11','no'),(304,'woocommerce_terms_page_id','','no'),(305,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(306,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(307,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(308,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(309,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(310,'woocommerce_myaccount_orders_endpoint','orders','yes'),(311,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(312,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(313,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(314,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(315,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(316,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(317,'woocommerce_logout_endpoint','customer-logout','yes'),(318,'woocommerce_api_enabled','no','yes'),(319,'woocommerce_allow_tracking','yes','no'),(320,'woocommerce_show_marketplace_suggestions','yes','no'),(321,'woocommerce_single_image_width','600','yes'),(322,'woocommerce_thumbnail_image_width','300','yes'),(323,'woocommerce_checkout_highlight_required_fields','yes','yes'),(324,'woocommerce_demo_store','no','no'),(325,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(326,'current_theme_supports_woocommerce','yes','yes'),(327,'woocommerce_queue_flush_rewrite_rules','no','yes'),(328,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(527,'product_cat_children','a:0:{}','yes'),(330,'default_product_cat','15','yes'),(333,'woocommerce_version','5.1.0','yes'),(334,'woocommerce_db_version','5.1.0','yes'),(536,'elementor_active_kit','5726','yes'),(344,'elementor_version','3.1.4','yes'),(345,'elementor_install_history','a:1:{s:5:\"3.1.4\";i:1617481128;}','yes'),(338,'yit_recently_activated','a:2:{i:0;s:36:\"yith-woocommerce-quick-view/init.php\";i:1;s:34:\"yith-woocommerce-wishlist/init.php\";}','yes'),(339,'recently_activated','a:0:{}','yes'),(340,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(341,'action_scheduler_lock_async-request-runner','1620520426','yes'),(342,'woocommerce_admin_notices','a:0:{}','yes'),(343,'revslider_update_version','6.4.0','yes'),(346,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"yvVsJAxkgZl8QXTYfLIsncYDEnX5kODg\";}','yes'),(347,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(348,'widget_booked_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(349,'widget_userpress_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(350,'widget_mks_flickr_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(351,'widget_newsletterwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(352,'widget_newsletterwidgetminimal','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(353,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(354,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(355,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(356,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(357,'widget_woocommerce_price_filter','a:2:{i:1;a:3:{s:5:\"title\";s:15:\"Filter by price\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(358,'widget_woocommerce_product_categories','a:2:{i:1;a:10:{s:5:\"title\";s:18:\"Product categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;s:9:\"max_depth\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(359,'widget_woocommerce_product_search','a:2:{i:1;a:3:{s:5:\"title\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(360,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(361,'widget_woocommerce_products','a:2:{i:1;a:9:{s:5:\"title\";s:15:\"Recent Products\";s:6:\"number\";i:3;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(362,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(363,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(364,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(365,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(366,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(367,'widget_instagram-feed-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(368,'widget_ct_recent_posts','a:3:{i:1;a:5:{s:5:\"title\";s:11:\"Recent News\";s:6:\"number\";i:3;s:7:\"post_in\";s:6:\"recent\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:6:{s:5:\"title\";s:11:\"Recent News\";s:6:\"number\";i:3;s:7:\"post_in\";s:6:\"recent\";s:6:\"layout\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(369,'widget_cs_social_widget','a:2:{i:1;a:16:{s:5:\"title\";s:0:\"\";s:13:\"link_facebook\";s:1:\"#\";s:8:\"link_rss\";s:0:\"\";s:12:\"link_youtube\";s:0:\"\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"link_google\";s:0:\"\";s:10:\"link_skype\";s:0:\"\";s:13:\"link_dribbble\";s:1:\"#\";s:11:\"link_flickr\";s:0:\"\";s:13:\"link_linkedin\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"link_pinterest\";s:0:\"\";s:14:\"link_bloglovin\";s:0:\"\";s:14:\"link_instagram\";s:1:\"#\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(370,'widget_getintouch_widget','a:2:{i:1;a:13:{s:5:\"title\";s:0:\"\";s:12:\"address_text\";s:20:\"Melbourne, Australia\";s:10:\"phone_text\";s:16:\"(Sat - Thursday)\";s:10:\"email_text\";s:0:\"\";s:6:\"styles\";s:6:\"style1\";s:8:\"el_class\";s:7:\"preset2\";s:10:\"hide_title\";b:0;s:9:\"time_text\";s:14:\"(10am - 05 pm)\";s:13:\"address_label\";s:18:\"380 St Kilda Road,\";s:11:\"phone_label\";s:22:\"Call Us: (210) 123-451\";s:10:\"time_label\";s:15:\"Monday - Friday\";s:8:\"btn_text\";s:10:\"Contact us\";s:8:\"btn_link\";s:57:\"https://demo.casethemes.net/consultio-immigration/contact\";}s:12:\"_multiwidget\";i:1;}','yes'),(371,'widget_newsletter_widget','a:3:{i:1;a:7:{s:5:\"title\";s:9:\"Subscribe\";s:12:\"introduction\";s:0:\"\";s:11:\"email_label\";s:18:\"Your mail address*\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_phone\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}i:2;a:7:{s:5:\"title\";s:9:\"Subscribe\";s:12:\"introduction\";s:0:\"\";s:11:\"email_label\";s:18:\"Your mail address*\";s:13:\"contact_email\";s:0:\"\";s:13:\"contact_phone\";s:0:\"\";s:8:\"el_class\";s:0:\"\";s:10:\"hide_title\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(375,'woocommerce_admin_install_timestamp','1617481129','yes'),(376,'booked_version_check','2.3','yes'),(374,'woocommerce_admin_version','2.0.2','yes'),(381,'sbi_usage_tracking_config','a:6:{s:3:\"day\";i:2;s:4:\"hour\";i:9;s:6:\"minute\";i:41;s:6:\"second\";i:2;s:6:\"offset\";i:207662;s:8:\"initsend\";i:1617702062;}','yes'),(382,'yith_wcwl_wishlist_page_id','12','yes'),(383,'yith_wcwl_version','3.0.20','yes'),(384,'yith_wcwl_db_version','3.0.0','yes'),(387,'sbi_rating_notice','pending','no'),(388,'sbi_db_version','1.9','yes'),(1248,'_transient_timeout_tnp_extensions_json','1620602457','no'),(1249,'_transient_tnp_extensions_json','[\n    {\n        \"id\": \"85\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.4\",\n        \"title\": \"Addons Manager\",\n        \"description\": \"\",\n        \"slug\": \"newsletter-extensions\",\n        \"type\": \"manager\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"\",\n        \"status\": \"4\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=85\",\n        \"wp_slug\": \"newsletter-extensions\\/extensions.php\"\n    },\n    {\n        \"id\": \"87\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.3\",\n        \"title\": \"Speed and Delivery Hours Control\",\n        \"description\": \"Configure a different delivery speed for each newsletter and the delivery hours window. Only for regular newsletters.\",\n        \"slug\": \"newsletter-speedcontrol\",\n        \"type\": \"legacy\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/12\\/speedcontrol.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=87\",\n        \"wp_slug\": \"newsletter-speedcontrol\\/speedcontrol.php\"\n    },\n    {\n        \"id\": \"90\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.4\",\n        \"title\": \"Sendinblue\",\n        \"description\": \"Integration with Sendinblue mailing service.\",\n        \"slug\": \"newsletter-sendinblue\",\n        \"type\": \"delivery\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/?p=198432\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=90\",\n        \"wp_slug\": \"newsletter-sendinblue\\/sendinblue.php\"\n    },\n    {\n        \"id\": \"93\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.0\",\n        \"title\": \"External SMTP\",\n        \"description\": \"Add SMTP support to Newsletter for sending emails.\",\n        \"slug\": \"newsletter-smtp\",\n        \"type\": \"delivery\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/delivery-addons\\/smtp-extension\\/\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"4\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=93\",\n        \"wp_slug\": \"newsletter-smtp\\/smtp.php\"\n    },\n    {\n        \"id\": \"97\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.3\",\n        \"title\": \"Webhooks (BETA)\",\n        \"description\": \"Adds webhooks to trigger external services upon subscription and cancellation events.\",\n        \"slug\": \"newsletter-webhooks\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/developers\\/newsletter-webhooks\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/bold-direction@2x-1.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=97\",\n        \"wp_slug\": \"newsletter-webhooks\\/webhooks.php\"\n    },\n    {\n        \"id\": \"99\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.1\",\n        \"title\": \"Elementor Forms Addon (ALPHA)\",\n        \"description\": \"Integrates Elementor forms with Newsletter to collect subscription by forms created with Elementor.\",\n        \"slug\": \"newsletter-elementor\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/elementor-extension\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/elementor.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=99\",\n        \"wp_slug\": \"newsletter-elementor\\/elementor.php\"\n    },\n    {\n        \"id\": \"100\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.0\",\n        \"title\": \"Easy Digital Downloads\",\n        \"description\": \"The Newsletter Plugin integration for Easy Digital Downloads.\",\n        \"slug\": \"\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/edd-logo.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=100\",\n        \"wp_slug\": \"\\/.php\"\n    },\n    {\n        \"id\": \"101\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.0\",\n        \"title\": \"Gravity Forms\",\n        \"description\": \"Integration between Gravity Forms and Newsletter to collect subscriptions directly from Gravity designed forms.\",\n        \"slug\": \"newsletter-gravityforms\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/gravityforms-extension\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/04\\/gravityforms.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=101\",\n        \"wp_slug\": \"newsletter-gravityforms\\/gravityforms.php\"\n    },\n    {\n        \"id\": \"91\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.2\",\n        \"title\": \"Instasend\",\n        \"description\": \"Quickly create a newsletter from a post (free for limited time)\",\n        \"slug\": \"newsletter-instasend\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2020\\/05\\/instasend-32.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=91\",\n        \"wp_slug\": \"newsletter-instasend\\/instasend.php\"\n    },\n    {\n        \"id\": \"61\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.1.9\",\n        \"title\": \"Contact Form 7\",\n        \"description\": \"Adds the newsletter subscription feature to your Contact Form 7 forms.\",\n        \"slug\": \"newsletter-cf7\",\n        \"type\": \"integration\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/contact-form-7-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/users-32px-outline_badge-13.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=61\",\n        \"wp_slug\": \"newsletter-cf7\\/cf7.php\"\n    },\n    {\n        \"id\": \"83\",\n        \"children_fileid\": null,\n        \"version\": \"1.0.3\",\n        \"title\": \"Ninja Forms Integration\",\n        \"description\": \"Integrate Ninja Forms with Newsletter collecting subscription from your contact form.\",\n        \"slug\": \"newsletter-ninjaforms\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/10\\/forms-integration.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=83\",\n        \"wp_slug\": \"newsletter-ninjaforms\\/ninjaforms.php\"\n    },\n    {\n        \"id\": \"84\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.5\",\n        \"title\": \"WP Forms Integration\",\n        \"description\": \"Integration with WP-Forms plugin. You can add a subscription option to your contact forms.\",\n        \"slug\": \"newsletter-wpforms\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/10\\/forms-integration.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=84\",\n        \"wp_slug\": \"newsletter-wpforms\\/wpforms.php\"\n    },\n    {\n        \"id\": \"50\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.3.9\",\n        \"title\": \"Reports\",\n        \"description\": \"Shows tables and diagrams of the collected data (opens, clicks, ...).\",\n        \"slug\": \"newsletter-reports\",\n        \"type\": \"extension\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/reports\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/business-32px-outline_chart-bar-33.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=50\",\n        \"wp_slug\": \"newsletter-reports\\/reports.php\"\n    },\n    {\n        \"id\": \"62\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.5.1\",\n        \"title\": \"Automated\",\n        \"description\": \"Automatically creates periodic newsletters with your blog contents. Multichannel.\",\n        \"slug\": \"newsletter-automated\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/automated\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2021\\/03\\/automated-32.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=62\",\n        \"wp_slug\": \"newsletter-automated\\/automated.php\"\n    },\n    {\n        \"id\": \"63\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.6.6\",\n        \"title\": \"WooCommerce\",\n        \"description\": \"The Newsletter Plugin integration for WooCommerce\\u2122. Unleash your marketing powers.\",\n        \"slug\": \"newsletter-woocommerce\",\n        \"type\": \"integration\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/woocommerce\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/03\\/woocommerce-extension-icon.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=63\",\n        \"wp_slug\": \"newsletter-woocommerce\\/woocommerce.php\"\n    },\n    {\n        \"id\": \"67\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.2.4\",\n        \"title\": \"Leads\",\n        \"description\": \"Add a popup or a fixed subscription bar to your website and offer your visitors a simple way to subscribe.\",\n        \"slug\": \"newsletter-leads\",\n        \"type\": \"extension\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/leads-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_widget.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=67\",\n        \"wp_slug\": \"newsletter-leads\\/leads.php\"\n    },\n    {\n        \"id\": \"68\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.2\",\n        \"title\": \"Google Analytics\",\n        \"description\": \"Automatically add Google Analytics UTM campaign tracking to links\",\n        \"slug\": \"newsletter-analytics\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/google-analytics\",\n        \"image\": \" https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/analytics.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=68\",\n        \"wp_slug\": \"newsletter-analytics\\/analytics.php\"\n    },\n    {\n        \"id\": \"70\",\n        \"children_fileid\": null,\n        \"version\": \"1.0.7\",\n        \"title\": \"Subscribe on Comment\",\n        \"description\": \"Adds the subscription option to your blog comment form\",\n        \"slug\": \"newsletter-comments\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/02\\/comment-notification.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=70\",\n        \"wp_slug\": \"newsletter-comments\\/comments.php\"\n    },\n    {\n        \"id\": \"72\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.2.9\",\n        \"title\": \"Autoresponder\",\n        \"description\": \"Create unlimited email series to follow-up your subscribers. Lessons, up-sells, conversations.\",\n        \"slug\": \"newsletter-autoresponder\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/autoresponder\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/emoticons-32px-outline_robot.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=72\",\n        \"wp_slug\": \"newsletter-autoresponder\\/autoresponder.php\"\n    },\n    {\n        \"id\": \"74\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.3.2\",\n        \"title\": \"Extended Composer Blocks\",\n        \"description\": \"Adds new blocks to the newsletter composer: list, video, gallery, full post.\",\n        \"slug\": \"newsletter-blocks\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/ui-32px-outline-3_widget.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=74\",\n        \"wp_slug\": \"newsletter-blocks\\/blocks.php\"\n    },\n    {\n        \"id\": \"75\",\n        \"children_fileid\": null,\n        \"version\": \"1.1.0\",\n        \"title\": \"Geolocation\",\n        \"description\": \"Geolocate the subscribers and target them by geolocation in your campaign.\",\n        \"slug\": \"newsletter-geo\",\n        \"type\": \"extension\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/03\\/geo-extension-icon.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=75\",\n        \"wp_slug\": \"newsletter-geo\\/geo.php\"\n    },\n    {\n        \"id\": \"77\",\n        \"children_fileid\": \"\",\n        \"version\": \"2.1.6\",\n        \"title\": \"Newsletter API\",\n        \"description\": \"Access programmatically to The Newsletter Plugin via REST calls.\",\n        \"slug\": \"newsletter-api\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/bold-direction@2x-1.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=77\",\n        \"wp_slug\": \"newsletter-api\\/api.php\"\n    },\n    {\n        \"id\": \"55\",\n        \"children_fileid\": null,\n        \"version\": \"4.0.9\",\n        \"title\": \"Facebook\",\n        \"description\": \"One click subscription and confirmation with Facebook Connect.\",\n        \"slug\": \"newsletter-facebook\",\n        \"type\": \"integration\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/facebook-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/Facebook.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=55\",\n        \"wp_slug\": \"newsletter-facebook\\/facebook.php\"\n    },\n    {\n        \"id\": \"76\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.5\",\n        \"title\": \"Bounce Management\",\n        \"description\": \"This experimental extension manages the bounces and keeps the list clean of invalid addresses.\",\n        \"slug\": \"newsletter-bounce\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/10\\/ic_settings_backup_restore_32px.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=76\",\n        \"wp_slug\": \"newsletter-bounce\\/bounce.php\"\n    },\n    {\n        \"id\": \"79\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.2\",\n        \"title\": \"Events Manager Integration\",\n        \"description\": \"Integrates with Events Manager plugin to add events in your regular and automated newsletters.\",\n        \"slug\": \"newsletter-events\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/addons\\/integrations\\/events-extension\\/\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2019\\/02\\/events-manager-icon.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=79\",\n        \"wp_slug\": \"newsletter-events\\/events.php\"\n    },\n    {\n        \"id\": \"82\",\n        \"children_fileid\": null,\n        \"version\": \"1.0.0\",\n        \"title\": \"Translatepress Bridge\",\n        \"description\": \"Enables few multilanguage Newsletter features for who is using Translatepress.\",\n        \"slug\": \"newsletter-translatepress\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2018\\/09\\/translatepress.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=82\",\n        \"wp_slug\": \"newsletter-translatepress\\/translatepress.php\"\n    },\n    {\n        \"id\": \"86\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.2.0\",\n        \"title\": \"Advanced Import\",\n        \"description\": \"An advanced import system with extended profile fields and mapping (beta version).\",\n        \"slug\": \"newsletter-import\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/file-upload-88.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=86\",\n        \"wp_slug\": \"newsletter-import\\/import.php\"\n    },\n    {\n        \"id\": \"88\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.2\",\n        \"title\": \"The Events Calendar (by Tribe)\",\n        \"description\": \"Adds a composer block which extracts the events managed by The Events Calendar plugin.\",\n        \"slug\": \"newsletter-tribeevents\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/documentation\\/tribeevents-extension\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2019\\/02\\/tribe-event-calendar-icon.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=88\",\n        \"wp_slug\": \"newsletter-tribeevents\\/tribeevents.php\"\n    },\n    {\n        \"id\": \"58\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.0.5\",\n        \"title\": \"Public Archive\",\n        \"description\": \"Generates a public archive of the sent newsletters for your blog.\",\n        \"slug\": \"newsletter-archive\",\n        \"type\": \"extension\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/newsletter-archive-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/files-32px-outline_archive-3d-content.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=58\",\n        \"wp_slug\": \"newsletter-archive\\/archive.php\"\n    },\n    {\n        \"id\": \"71\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.9\",\n        \"title\": \"Locked Content\",\n        \"description\": \"Boost your subscription rate locking out your premium contents with a subscription form.\",\n        \"slug\": \"newsletter-lock\",\n        \"type\": \"extension\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/ui-32px-outline-1_lock-open.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=71\",\n        \"wp_slug\": \"newsletter-lock\\/lock.php\"\n    },\n    {\n        \"id\": \"73\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.2.6\",\n        \"title\": \"WP Users Integration\",\n        \"description\": \"Connects the WordPress user registration with Newsletter subscription. Optionally imports all WP users as subscribers.\",\n        \"slug\": \"newsletter-wpusers\",\n        \"type\": \"integration\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/uploads\\/2017\\/04\\/media-32px-outline-2_speaker-01.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=73\",\n        \"wp_slug\": \"newsletter-wpusers\\/wpusers.php\"\n    },\n    {\n        \"id\": \"51\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.1.3\",\n        \"title\": \"Feed by Mail\",\n        \"description\": \"Automatically creates and sends newsletters with the latest blog posts.\",\n        \"slug\": \"newsletter-feed\",\n        \"type\": \"legacy\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/feed-by-mail-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_playlist.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=51\",\n        \"wp_slug\": \"newsletter-feed\\/feed.php\"\n    },\n    {\n        \"id\": \"53\",\n        \"children_fileid\": null,\n        \"version\": \"2.2.0\",\n        \"title\": \"Popup\",\n        \"description\": \"Configurable popup system to increase the subscription rate.\",\n        \"slug\": \"newsletter-popup\",\n        \"type\": \"legacy\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/popup-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-3_widget.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=53\",\n        \"wp_slug\": \"newsletter-popup\\/popup.php\"\n    },\n    {\n        \"id\": \"54\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.1.3\",\n        \"title\": \"Followup\",\n        \"description\": \"Automated email series sent upon subscription at defined intervals.\",\n        \"slug\": \"newsletter-followup\",\n        \"type\": \"legacy\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/follow-up-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/ui-32px-outline-2_time-countdown.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=54\",\n        \"wp_slug\": \"newsletter-followup\\/followup.php\"\n    },\n    {\n        \"id\": \"48\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.2.2\",\n        \"title\": \"SendGrid\",\n        \"description\": \"Integrates the SendGrid delivery system and bounce detection.\",\n        \"slug\": \"newsletter-sendgrid\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/sendgrid-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=48\",\n        \"wp_slug\": \"newsletter-sendgrid\\/sendgrid.php\"\n    },\n    {\n        \"id\": \"49\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.0.0\",\n        \"title\": \"Mandrill\",\n        \"description\": \"Integrates the Mandrill delivery system and bounce detection.\",\n        \"slug\": \"newsletter-mandrill\",\n        \"type\": \"legacy\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/mandrill-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=49\",\n        \"wp_slug\": \"newsletter-mandrill\\/mandrill.php\"\n    },\n    {\n        \"id\": \"52\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.0.8\",\n        \"title\": \"Mailjet\",\n        \"description\": \"Integrates the Mailjet delivery system and bounce detection.\",\n        \"slug\": \"newsletter-mailjet\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/mailjet-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=52\",\n        \"wp_slug\": \"newsletter-mailjet\\/mailjet.php\"\n    },\n    {\n        \"id\": \"60\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.3.2\",\n        \"title\": \"Amazon SES\",\n        \"description\": \"Integrates Newsletter with Amazon SES service for sending emails and processing bounces.\",\n        \"slug\": \"newsletter-amazon\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/amazon-ses-extension\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=60\",\n        \"wp_slug\": \"newsletter-amazon\\/amazon.php\"\n    },\n    {\n        \"id\": \"65\",\n        \"children_fileid\": \"\",\n        \"version\": \"4.1.2\",\n        \"title\": \"Mailgun\",\n        \"description\": \"Integrates the Mailgun delivery system and bounce detection.\",\n        \"slug\": \"newsletter-mailgun\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/mailgun-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=65\",\n        \"wp_slug\": \"newsletter-mailgun\\/mailgun.php\"\n    },\n    {\n        \"id\": \"66\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.0\",\n        \"title\": \"ElasticEmail\",\n        \"description\": \"ElasticEmail integration\",\n        \"slug\": \"newsletter-elasticemail\",\n        \"type\": \"delivery\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=66\",\n        \"wp_slug\": \"newsletter-elasticemail\\/elasticemail.php\"\n    },\n    {\n        \"id\": \"69\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.1.7\",\n        \"title\": \"SparkPost\",\n        \"description\": \"Integrates Newsletter with the SparkPost mail delivery service and bounce detection.\",\n        \"slug\": \"newsletter-sparkpost\",\n        \"type\": \"delivery\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/premium\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"2\",\n        \"free\": false,\n        \"downloadable\": false,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=69\",\n        \"wp_slug\": \"newsletter-sparkpost\\/sparkpost.php\"\n    },\n    {\n        \"id\": \"56\",\n        \"children_fileid\": \"\",\n        \"version\": \"2.2.0\",\n        \"title\": \"Grabber\",\n        \"description\": \"Experimental! General subscription grabber from other forms. Requires technical skills.\",\n        \"slug\": \"newsletter-grabber\",\n        \"type\": \"legacy\",\n        \"url\": \"http:\\/\\/www.thenewsletterplugin.com\\/plugins\\/newsletter\\/grabber-module\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/placeholder.png\",\n        \"status\": \"4\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=56\",\n        \"wp_slug\": \"newsletter-grabber\\/grabber.php\"\n    },\n    {\n        \"id\": \"96\",\n        \"children_fileid\": \"\",\n        \"version\": \"1.0.1\",\n        \"title\": \"Office 365 Header Removal\",\n        \"description\": \"This addon removes hidden headers from outgoing email to avoid Office365 SMTP block (or attempt to...). Install ONLY if you\'re using Office365 SMTP with an SMTP plugin!\",\n        \"slug\": \"newsletter-office365\",\n        \"type\": \"delivery\",\n        \"url\": \"https:\\/\\/www.thenewsletterplugin.com\\/account\",\n        \"image\": \"https:\\/\\/cdn.thenewsletterplugin.com\\/extensions\\/design-32px-outline_newsletter-dev.png\",\n        \"status\": \"3\",\n        \"free\": true,\n        \"downloadable\": true,\n        \"download_url\": \"http:\\/\\/www.thenewsletterplugin.com\\/wp-content\\/plugins\\/file-commerce-pro\\/get.php?f=96\",\n        \"wp_slug\": \"newsletter-office365\\/office365.php\"\n    }\n]','no'),(647,'revslider_update_revision_current','6.4.0','yes'),(569,'elementor_controls_usage','a:3:{s:7:\"wp-post\";a:7:{s:10:\"ct_heading\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:14:\"ct_text_editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:9:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:22:\"typography_font_family\";i:2;s:5:\"align\";i:1;s:26:\"link_typography_typography\";i:1;s:27:\"link_typography_font_weight\";i:1;s:16:\"link_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:13:\"margin_tablet\";i:3;s:6:\"margin\";i:1;}}}}s:18:\"ct_navigation_menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:4:\"menu\";i:1;s:5:\"style\";i:1;}}}}s:15:\"ct_contact_info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:4:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}}}}}s:7:\"wp-page\";a:10:{s:6:\"column\";a:2:{s:5:\"count\";i:-7;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:-3;s:19:\"_inline_size_tablet\";i:-2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:2;s:13:\"margin_tablet\";i:-6;s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:-6;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:-13;s:15:\"stretch_section\";i:7;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:-6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:9;s:16:\"background_image\";i:-3;s:15:\"background_size\";i:-1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:-4;s:7:\"padding\";i:-3;s:13:\"margin_tablet\";i:1;}}}}s:10:\"ct_heading\";a:2:{s:5:\"count\";i:-1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:-1;s:11:\"title_color\";i:5;s:10:\"text_align\";i:6;s:27:\"title_typography_typography\";i:-3;s:26:\"title_typography_font_size\";i:-1;s:18:\"title_space_bottom\";i:-1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:-2;}s:17:\"sub_title_section\";a:6:{s:15:\"sub_title_style\";i:4;s:31:\"sub_title_typography_typography\";i:3;s:30:\"sub_title_typography_font_size\";i:7;s:15:\"sub_title_color\";i:-2;s:26:\"sub_title_space_top_mobile\";i:1;s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:4;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:12;s:7:\"link_to\";i:12;s:4:\"link\";i:12;s:5:\"align\";i:11;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:-1;s:8:\"_padding\";i:1;s:12:\"_css_classes\";i:1;}}}}s:14:\"ct_text_editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:10:\"text_color\";i:3;s:5:\"align\";i:3;s:26:\"link_typography_typography\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:-1;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:2;}}}}s:12:\"ct_fancy_box\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:-3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:-3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:-2;s:20:\"typography_font_size\";i:-2;s:27:\"typography_font_size_tablet\";i:-2;s:22:\"typography_line_height\";i:-2;s:29:\"typography_line_height_tablet\";i:-2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:-3;s:12:\"_css_classes\";i:-3;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:17:\"slider_revolution\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:2:{s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:4:\"dots\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:13:\"style_section\";a:2:{s:9:\"style_l12\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}s:7:\"section\";a:4:{s:10:\"ct_heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:1;s:11:\"title_color\";i:1;s:10:\"text_align\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:30:\"sub_title_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:15:\"stretch_section\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:7:\"link_to\";i:4;s:4:\"link\";i:4;s:5:\"align\";i:4;}}}}}}','no'),(511,'action_scheduler_migration_status','complete','yes'),(394,'external_updates-booked','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1620517624;s:14:\"checkedVersion\";s:3:\"2.3\";s:6:\"update\";O:8:\"stdClass\":7:{s:2:\"id\";i:0;s:4:\"slug\";s:6:\"booked\";s:7:\"version\";s:5:\"2.3.5\";s:8:\"homepage\";s:20:\"https://getbooked.io\";s:12:\"download_url\";s:55:\"http://boxyupdates.com/get/?action=download&slug=booked\";s:14:\"upgrade_notice\";N;s:8:\"filename\";s:17:\"booked/booked.php\";}}','no'),(1373,'_transient_timeout__woocommerce_helper_updates','1620560823','no'),(1374,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1620517623;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(403,'wc_remote_inbox_notifications_specs','a:16:{s:20:\"paypal_ppcp_gtm_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"paypal_ppcp_gtm_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Offer more options with the new PayPal\";s:7:\"content\";s:113:\"Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"open_wc_paypal_payments_product_page\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:61:\"https://woocommerce.com/products/woocommerce-paypal-payments/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-04-05 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-04-21 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-gateway-paypal-pro\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:37:\"woocommerce-gateway-paypal-pro-hosted\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:35:\"woocommerce-gateway-paypal-advanced\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:40:\"woocommerce-gateway-paypal-digital-goods\";}}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"woocommerce-paypal-here-gateway\";}}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-paypal-adaptive-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:27:\"woocommerce-paypal-payments\";s:7:\"version\";s:5:\"1.2.1\";s:8:\"operator\";s:1:\"<\";}}}}}s:23:\"facebook_pixel_api_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"facebook_pixel_api_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Improve the performance of your Facebook ads\";s:7:\"content\";s:168:\"Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"upgrade_now_facebook_pixel_api\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:67:\"plugin-install.php?tab=plugin-information&plugin=&section=changelog\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-02-15 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-02-29 00:00:00\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"facebook-for-woocommerce\";s:7:\"version\";s:5:\"2.1.4\";s:8:\"operator\";s:2:\"<=\";}}}s:16:\"facebook_ec_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:16:\"facebook_ec_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:59:\"Sync your product catalog with Facebook to help boost sales\";s:7:\"content\";s:170:\"A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"learn_more_facebook_ec\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/facebook/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-03-01 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-03-15 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:24:\"facebook-for-woocommerce\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:461:\"That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:31:\"wc-square-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-square-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:191:\"Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:97:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:38:\"wc-square-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"wc-square-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"Grow your business with Square and Apple Pay \";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:104:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wcpay-apple-pay-is-now-available\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wcpay-apple-pay-is-now-available\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Apple Pay is now available with WooCommerce Payments!\";s:7:\"content\";s:397:\"Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"add-apple-pay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:69:\"/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:121:\"https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.3.0\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";b:0;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}s:27:\"wcpay-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"wcpay-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:205:\"Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:96:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"wcpay-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"wcpay-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Grow your business with WooCommerce Payments and Apple Pay\";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:103:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:171:\"It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:173:\"Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}}','yes'),(404,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:0;}','yes');
INSERT INTO `wpiy_options` VALUES (411,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:14:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:5:\"Ebook\";i:3;s:9:\"eCommerce\";i:4;s:9:\"Education\";i:5;s:6:\"Events\";i:6;s:18:\"Health and Fitness\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:878:{i:0;a:15:{s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:15:{s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:15:{s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:15:{s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:15:{s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:15:{s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:15:{s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:15:{s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:15:{s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:15:{s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:15:{s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:15:{s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:15:{s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:15:{s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:15:{s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:15:{s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:15:{s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:15:{s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:15:{s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:15:{s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:15:{s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:15:{s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:15:{s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:15:{s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:15:{s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:15:{s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:15:{s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:15:{s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:15:{s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:15:{s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:15:{s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:15:{s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:15:{s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:15:{s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:15:{s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:15:{s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:15:{s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:15:{s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:15:{s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:15:{s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:15:{s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:15:{s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:15:{s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:15:{s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:15:{s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:15:{s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:15:{s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:15:{s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:15:{s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:15:{s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:15:{s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:15:{s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:15:{s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:15:{s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:15:{s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:15:{s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:15:{s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:15:{s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:15:{s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:15:{s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:15:{s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:15:{s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:15:{s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:15:{s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:15:{s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:15:{s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:15:{s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:15:{s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:15:{s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:15:{s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:70;a:15:{s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:15:{s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:15:{s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:15:{s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:15:{s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:15:{s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:15:{s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:15:{s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:15:{s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:15:{s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:15:{s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:15:{s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:15:{s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:15:{s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:15:{s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:15:{s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:15:{s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:15:{s:2:\"id\";i:1190;s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1490707391;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:2;s:11:\"trend_index\";i:1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:88;a:15:{s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:15:{s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:90;a:15:{s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:15:{s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:15:{s:2:\"id\";i:225;s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";i:1470829872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=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\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:1;s:11:\"trend_index\";i:2;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:93;a:15:{s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:94;a:15:{s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:15:{s:2:\"id\";i:463;s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";i:1477388340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=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:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:4;s:11:\"trend_index\";i:3;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:96;a:15:{s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:15:{s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:15:{s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:15:{s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:15:{s:2:\"id\";i:181;s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";i:1470826567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:3;s:11:\"trend_index\";i:4;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:101;a:15:{s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:15:{s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:15:{s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:15:{s:2:\"id\";i:150;s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";i:1470829879;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:6;s:11:\"trend_index\";i:5;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:105;a:15:{s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:15:{s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:15:{s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:15:{s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:15:{s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:15:{s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:15:{s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:15:{s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:15:{s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:15:{s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:15:{s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:15:{s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:15:{s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:15:{s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:15:{s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:15:{s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:15:{s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:15:{s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:123;a:15:{s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:124;a:15:{s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:15:{s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:15:{s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:15:{s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:128;a:15:{s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:129;a:15:{s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:15:{s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:131;a:15:{s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:132;a:15:{s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:15:{s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:134;a:15:{s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:135;a:15:{s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:136;a:15:{s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:15:{s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:15:{s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:139;a:15:{s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:15:{s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:15:{s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:15:{s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:15:{s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:15:{s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:145;a:15:{s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:15:{s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:15:{s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:148;a:15:{s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:15:{s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:15:{s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:15:{s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:15:{s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:153;a:15:{s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:15:{s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:15:{s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:15:{s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:157;a:15:{s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:15:{s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:15:{s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:15:{s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:161;a:15:{s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:15:{s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:15:{s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:15:{s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:15:{s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:15:{s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:167;a:15:{s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:15:{s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:169;a:15:{s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:15:{s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:15:{s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:15:{s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:173;a:15:{s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:15:{s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:175;a:15:{s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:15:{s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:15:{s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:15:{s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:15:{s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:180;a:15:{s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:15:{s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:15:{s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:15:{s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:184;a:15:{s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:15:{s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:15:{s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:15:{s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:15:{s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:15:{s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:190;a:15:{s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:15:{s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:15:{s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:15:{s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:15:{s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:15:{s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:15:{s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:15:{s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:15:{s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:15:{s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:15:{s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:15:{s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:15:{s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:15:{s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:15:{s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:15:{s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:15:{s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:15:{s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:15:{s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:15:{s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:15:{s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:15:{s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:15:{s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:15:{s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:15:{s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:15:{s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:15:{s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:15:{s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:15:{s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:15:{s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:15:{s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:15:{s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:15:{s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:15:{s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:15:{s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:15:{s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:226;a:15:{s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:15:{s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:15:{s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:15:{s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:15:{s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:15:{s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:15:{s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:15:{s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:15:{s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:15:{s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:15:{s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:15:{s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:15:{s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:15:{s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:15:{s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:15:{s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:15:{s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:15:{s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:15:{s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:15:{s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:15:{s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:15:{s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:15:{s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:15:{s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:250;a:15:{s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:15:{s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:15:{s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:15:{s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:15:{s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:15:{s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:15:{s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:15:{s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:15:{s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:15:{s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:260;a:15:{s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:15:{s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:15:{s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:15:{s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:15:{s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:15:{s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:266;a:15:{s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:15:{s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:15:{s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:15:{s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:15:{s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:15:{s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:15:{s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:15:{s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:15:{s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:15:{s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:276;a:15:{s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:15:{s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:278;a:15:{s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:15:{s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:15:{s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:15:{s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:282;a:15:{s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:283;a:15:{s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:284;a:15:{s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:15:{s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:15:{s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:15:{s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:15:{s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:15:{s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:290;a:15:{s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:15:{s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:15:{s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:293;a:15:{s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:15:{s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:15:{s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:15:{s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:15:{s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:15:{s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:15:{s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:15:{s:2:\"id\";i:16192;s:5:\"title\";s:30:\"Management App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1607866881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/management-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:33:\"[\"App\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:827;s:11:\"trend_index\";i:765;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:15:{s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:15:{s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:303;a:15:{s:2:\"id\";i:15839;s:5:\"title\";s:29:\"Chiropractor &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1607855449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/chiropractor-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Business\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:828;s:11:\"trend_index\";i:709;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:15:{s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:15:{s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:306;a:15:{s:2:\"id\";i:12805;s:5:\"title\";s:38:\"Photography &#8211; B&#038;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:15:{s:2:\"id\";i:15827;s:5:\"title\";s:32:\"Creative Agency &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1607855280;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/creative-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:168:\"[\"Agency\",\"bootstrap\",\"Business\",\"corporate\",\"Landing Pages\",\"Marketing Campaign\",\"Marketing Landing Page\",\"Product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:748;s:11:\"trend_index\";i:363;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:15:{s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:309;a:15:{s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:15:{s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:15:{s:2:\"id\";i:16120;s:5:\"title\";s:37:\"Life coach Tom &#8211; Online Service\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1607865812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/life-coach-tom-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:30:\"[\"Consulting\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:818;s:11:\"trend_index\";i:796;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:15:{s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:15:{s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:15:{s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:15:{s:2:\"id\";i:16059;s:5:\"title\";s:34:\"Melbourne Conference &#8211; Event\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1607864236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/melbourne-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:841;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:15:{s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:15:{s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:15:{s:2:\"id\";i:16073;s:5:\"title\";s:56:\"International Women&#8217;s Day Conference &#8211; Event\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1607864979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/international-womens-day-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:865;s:11:\"trend_index\";i:789;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:15:{s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:15:{s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:15:{s:2:\"id\";i:16085;s:5:\"title\";s:29:\"Tech Conference &#8211; Event\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1607865227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/tech-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:851;s:11:\"trend_index\";i:747;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:15:{s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:15:{s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:15:{s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:15:{s:2:\"id\";i:16102;s:5:\"title\";s:38:\"Environmental Conference &#8211; Event\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1607865473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/environmental-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:833;s:11:\"trend_index\";i:772;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:15:{s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:15:{s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:15:{s:2:\"id\";i:15931;s:5:\"title\";s:37:\"Tokyo Design Conference &#8211; Event\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1607861271;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/tokyo-design-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:815;s:11:\"trend_index\";i:644;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:15:{s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:15:{s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:15:{s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:15:{s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:15:{s:2:\"id\";i:16412;s:5:\"title\";s:36:\"Photography Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1607869919;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/photography-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:52:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:862;s:11:\"trend_index\";i:749;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:15:{s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:15:{s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:15:{s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:15:{s:2:\"id\";i:16183;s:5:\"title\";s:32:\"Luxury Homes &#8211; Real Estate\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1607866726;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:835;s:11:\"trend_index\";i:768;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:15:{s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:15:{s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:15:{s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:15:{s:2:\"id\";i:16420;s:5:\"title\";s:36:\"Spring Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1607899243;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/spring-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Coupon\",\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:852;s:11:\"trend_index\";i:756;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:15:{s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:15:{s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:15:{s:2:\"id\";i:16427;s:5:\"title\";s:34:\"Dream Car Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1607934325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/dream-car-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:53:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Offer\",\"Sale\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:863;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:15:{s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:15:{s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:347;a:15:{s:2:\"id\";i:16433;s:5:\"title\";s:42:\"Leshnik Mega Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1607934474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/leshnik-mega-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:45:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:867;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:15:{s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:15:{s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:15:{s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:15:{s:2:\"id\";i:15986;s:5:\"title\";s:40:\"From Freelance to Business &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1607862915;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/from-freelance-to-business-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:143:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"Landing Pages\",\"Marketing\",\"Product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:837;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:15:{s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:15:{s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:354;a:15:{s:2:\"id\";i:16002;s:5:\"title\";s:30:\"Architect Manual &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1607863075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/architect-manual-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:836;s:11:\"trend_index\";i:827;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:15:{s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:15:{s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:357;a:15:{s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:15:{s:2:\"id\";i:16014;s:5:\"title\";s:23:\"Good Life &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1607863305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/lp/good-life-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:807;s:11:\"trend_index\";i:646;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:15:{s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:15:{s:2:\"id\";i:9139;s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1532949924;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:7;s:11:\"trend_index\";i:7;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:15:{s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:15:{s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:15:{s:2:\"id\";i:16242;s:5:\"title\";s:37:\"Fashion Season Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1607867761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/fashion-season-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:813;s:11:\"trend_index\";i:746;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:15:{s:2:\"id\";i:1634;s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1494352119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:223;s:11:\"trend_index\";i:360;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:15:{s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:15:{s:2:\"id\";i:16202;s:5:\"title\";s:39:\"Starlight Nation Festival &#8211; Event\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1607867113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/starlight-nation-festival-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:842;s:11:\"trend_index\";i:770;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:15:{s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:15:{s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:15:{s:2:\"id\";i:16139;s:5:\"title\";s:37:\"Financial Consultant &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1607866334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/financial-consultant-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:40:\"[\"Consulting\",\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:824;s:11:\"trend_index\";i:798;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:15:{s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:15:{s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:15:{s:2:\"id\";i:15822;s:5:\"title\";s:30:\"Family Vacation &#8211; Travel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1607855143;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/family-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:773;s:11:\"trend_index\";i:593;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:15:{s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:15:{s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:375;a:15:{s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:15:{s:2:\"id\";i:15964;s:5:\"title\";s:31:\"Law Convention &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607862731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/law-convention-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:36:\"[\"Convention\",\"Landing Pages\",\"Law\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:860;s:11:\"trend_index\";i:794;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:15:{s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:15:{s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:15:{s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:15:{s:2:\"id\";i:15910;s:5:\"title\";s:38:\"Litigation Law Office &#8211; Business\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1607860827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/litigation-law-office-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:32:\"[\"Landing Pages\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:825;s:11:\"trend_index\";i:719;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:15:{s:2:\"id\";i:1504;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1494352112;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:174;s:11:\"trend_index\";i:367;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:15:{s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:383;a:15:{s:2:\"id\";i:16025;s:5:\"title\";s:33:\"Conoco Mobile App &#8211; Product\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1607863511;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/conoco-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:789;s:11:\"trend_index\";i:698;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:384;a:15:{s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:15:{s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:15:{s:2:\"id\";i:15853;s:5:\"title\";s:29:\"Me Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1607857451;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/me-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:811;s:11:\"trend_index\";i:704;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:15:{s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:15:{s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:15:{s:2:\"id\";i:15844;s:5:\"title\";s:32:\"Torel Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1607856863;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/torel-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:822;s:11:\"trend_index\";i:812;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:15:{s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:391;a:15:{s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:15:{s:2:\"id\";i:16041;s:5:\"title\";s:31:\"Nano Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1607863992;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:847;s:11:\"trend_index\";i:723;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:15:{s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:15:{s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:15:{s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:396;a:15:{s:2:\"id\";i:15890;s:5:\"title\";s:39:\"Personal Trainer &#8211; Online Service\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1607860512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-trainer-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:35:\"[\"Fitness\",\"Landing Pages\",\"Sport\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:838;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:15:{s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:15:{s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:399;a:15:{s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:15:{s:2:\"id\";i:1503;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1494352113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:165;s:11:\"trend_index\";i:191;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:15:{s:2:\"id\";i:16233;s:5:\"title\";s:36:\"Journey Photography &#8211; Business\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1607867416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/journey-photography-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:42:\"[\"Business\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:788;s:11:\"trend_index\";i:594;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:402;a:15:{s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:15:{s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:404;a:15:{s:2:\"id\";i:16162;s:5:\"title\";s:29:\"Private Chef &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1607866578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/private-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:24:\"[\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:855;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:15:{s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:15:{s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:15:{s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:15:{s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:15:{s:2:\"id\";i:16325;s:5:\"title\";s:28:\"Quality Lens &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1607868782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/quality-lens-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:804;s:11:\"trend_index\";i:621;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:410;a:15:{s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:411;a:15:{s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:15:{s:2:\"id\";i:16332;s:5:\"title\";s:31:\"Luxury Flat &#8211; Real Estate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1607868929;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/luxury-flat-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:38:\"[\"flat\",\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:809;s:11:\"trend_index\";i:707;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:15:{s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:15:{s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:15:{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:1607869068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:791;s:11:\"trend_index\";i:696;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:416;a:15:{s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:15:{s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:15:{s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:15:{s:2:\"id\";i:16358;s:5:\"title\";s:41:\"Sunset Valley Project &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1607869234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/sunset-valley-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:846;s:11:\"trend_index\";i:743;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:15:{s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:15:{s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:15:{s:2:\"id\";i:16379;s:5:\"title\";s:33:\"Property Page &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1607869379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/property-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:42:\"[\"Landing Pages\",\"Property\",\"Real estate\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:864;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:15:{s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:15:{s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:15:{s:2:\"id\";i:16392;s:5:\"title\";s:30:\"Open House &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1607869551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:150:\"[\"Agent\",\"Business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"Landing Pages\",\"listing\",\"modern\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:839;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:15:{s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:15:{s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:15:{s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:15:{s:2:\"id\";i:15950;s:5:\"title\";s:30:\"Stylist &#8211; Online Service\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1607862286;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/stylist-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:162:\"[\"cosmetics\",\"Fashion\",\"girly\",\"hairdresser\",\"Landing Pages\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"Products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:853;s:11:\"trend_index\";i:805;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:15:{s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:15:{s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:15:{s:2:\"id\";i:16253;s:5:\"title\";s:33:\"Bicycle Adventures &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1607867944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bicycle-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:36:\"[\"Bicycle\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:785;s:11:\"trend_index\";i:524;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:433;a:15:{s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:15:{s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:15:{s:2:\"id\";i:16271;s:5:\"title\";s:42:\"Luxury Travel Destinations  &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1607868120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/luxury-travel-destinations-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:830;s:11:\"trend_index\";i:833;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:15:{s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:15:{s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:15:{s:2:\"id\";i:16283;s:5:\"title\";s:29:\"Vacation Deals &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1607868279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/vacation-deals-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:850;s:11:\"trend_index\";i:799;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:15:{s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:15:{s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:15:{s:2:\"id\";i:519;s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";i:1477388808;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:10;s:11:\"trend_index\";i:62;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:15:{s:2:\"id\";i:16299;s:5:\"title\";s:29:\"New Adventures &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1607868454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/new-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:50:\"[\"Adventures\",\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:849;s:11:\"trend_index\";i:830;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:15:{s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:15:{s:2:\"id\";i:487;s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1477388357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:32;s:11:\"trend_index\";i:136;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:445;a:15:{s:2:\"id\";i:16312;s:5:\"title\";s:26:\"Summer Time &#8211; Travel\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607868625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/summer-time-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:829;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:15:{s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:15:{s:2:\"id\";i:15870;s:5:\"title\";s:32:\"Tel Aviv Vacation &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1607860195;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/tel-aviv-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:802;s:11:\"trend_index\";i:688;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:15:{s:2:\"id\";i:855;s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1494352061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:290;s:11:\"trend_index\";i:394;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:15:{s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:15:{s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:451;a:15:{s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:15:{s:2:\"id\";i:955;s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1494352069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:202;s:11:\"trend_index\";i:271;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:15:{s:2:\"id\";i:16440;s:5:\"title\";s:31:\"Marketing Webinar &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1607934662;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/marketing-webinar-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:37:\"[\"Event\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:794;s:11:\"trend_index\";i:762;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:454;a:15:{s:2:\"id\";i:16212;s:5:\"title\";s:33:\"Wedding Celebration &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1607867299;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/wedding-celebration-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:35:\"[\"Event\",\"Landing Pages\",\"Wedding\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:798;s:11:\"trend_index\";i:730;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:15:{s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:15:{s:2:\"id\";i:9373;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1542811219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:283;s:11:\"trend_index\";i:325;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:15:{s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:15:{s:2:\"id\";i:974;s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1494352071;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=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:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:329;s:11:\"trend_index\";i:512;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:15:{s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:460;a:15:{s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:15:{s:2:\"id\";i:11948;s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";i:1572153978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:195;s:11:\"trend_index\";i:259;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:462;a:15:{s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:15:{s:2:\"id\";i:754;s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";i:1485269691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:251;s:11:\"trend_index\";i:400;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:15:{s:2:\"id\";i:752;s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";i:1485269737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:344;s:11:\"trend_index\";i:425;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:15:{s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:15:{s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:15:{s:2:\"id\";i:753;s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";i:1485269710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:309;s:11:\"trend_index\";i:435;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:15:{s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:15:{s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"dance studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:15:{s:2:\"id\";i:751;s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";i:1485269743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:258;s:11:\"trend_index\";i:200;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:15:{s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"dance studio\",\"footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:15:{s:2:\"id\";i:2402;s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";i:1506441447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:126;s:11:\"trend_index\";i:257;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:15:{s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"dance studio\",\"header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:15:{s:2:\"id\";i:3626;s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";i:1513513193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:293;s:11:\"trend_index\";i:637;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:15:{s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:15:{s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:15:{s:2:\"id\";i:11966;s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";i:1572154274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:490;s:11:\"trend_index\";i:595;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:15:{s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:15:{s:2:\"id\";i:3632;s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";i:1513513171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:222;s:11:\"trend_index\";i:342;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:15:{s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:15:{s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:15:{s:2:\"id\";i:3619;s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";i:1513513137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:232;s:11:\"trend_index\";i:219;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:15:{s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:15:{s:2:\"id\";i:9425;s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";i:1542901234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:360;s:11:\"trend_index\";i:472;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:15:{s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:15:{s:2:\"id\";i:11973;s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";i:1572154523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:418;s:11:\"trend_index\";i:476;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:15:{s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:488;a:15:{s:2:\"id\";i:11981;s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";i:1572155125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:410;s:11:\"trend_index\";i:390;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:15:{s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:490;a:15:{s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:15:{s:2:\"id\";i:147;s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";i:1470829868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=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:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:5;s:11:\"trend_index\";i:16;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:492;a:15:{s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:15:{s:2:\"id\";i:777;s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";i:1485273092;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:175;s:11:\"trend_index\";i:414;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:15:{s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:15:{s:2:\"id\";i:2404;s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";i:1506441452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:164;s:11:\"trend_index\";i:286;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:15:{s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:497;a:15:{s:2:\"id\";i:492;s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";i:1477388365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:14;s:11:\"trend_index\";i:79;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:498;a:15:{s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:15:{s:2:\"id\";i:3451;s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";i:1512054116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:266;s:11:\"trend_index\";i:407;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:15:{s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:15:{s:2:\"id\";i:2152;s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";i:1499774132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=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:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:382;s:11:\"trend_index\";i:530;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:15:{s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:503;a:15:{s:2:\"id\";i:1068;s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";i:1488805928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:249;s:11:\"trend_index\";i:437;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:15:{s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:15:{s:2:\"id\";i:2813;s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";i:1509615049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:130;s:11:\"trend_index\";i:215;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:15:{s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:15:{s:2:\"id\";i:728;s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";i:1485269993;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=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:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:324;s:11:\"trend_index\";i:790;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:15:{s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:509;a:15:{s:2:\"id\";i:2403;s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";i:1506441428;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:314;s:11:\"trend_index\";i:499;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:15:{s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:15:{s:2:\"id\";i:1903;s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";i:1496822325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:211;s:11:\"trend_index\";i:320;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:15:{s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:15:{s:2:\"id\";i:2123;s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";i:1499772989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:11;s:11:\"trend_index\";i:19;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:15:{s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:15:{s:2:\"id\";i:1888;s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";i:1496822319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:315;s:11:\"trend_index\";i:771;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:15:{s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:15:{s:2:\"id\";i:1891;s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";i:1496822323;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:503;s:11:\"trend_index\";i:835;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:15:{s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:15:{s:2:\"id\";i:1880;s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";i:1496822317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=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:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:535;s:11:\"trend_index\";i:576;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:15:{s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:15:{s:2:\"id\";i:1885;s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";i:1496822321;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:235;s:11:\"trend_index\";i:610;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:15:{s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:15:{s:2:\"id\";i:2723;s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509633883;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:218;s:11:\"trend_index\";i:300;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:15:{s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:15:{s:2:\"id\";i:2145;s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";i:1499774125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:403;s:11:\"trend_index\";i:699;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:15:{s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:15:{s:2:\"id\";i:2155;s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";i:1499774130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:471;s:11:\"trend_index\";i:461;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:15:{s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:15:{s:2:\"id\";i:1085;s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";i:1488810874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=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:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:8;s:11:\"trend_index\";i:36;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:530;a:15:{s:2:\"id\";i:143;s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";i:1470820447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:28;s:11:\"trend_index\";i:141;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:15:{s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:15:{s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:15:{s:2:\"id\";i:101;s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";i:1470829785;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=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:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:54;s:11:\"trend_index\";i:182;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:15:{s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:15:{s:2:\"id\";i:140;s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";i:1470820463;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:18;s:11:\"trend_index\";i:74;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:15:{s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:15:{s:2:\"id\";i:213;s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";i:1470829766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:20;s:11:\"trend_index\";i:65;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:15:{s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:15:{s:2:\"id\";i:2802;s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509615440;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:263;s:11:\"trend_index\";i:504;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:15:{s:2:\"id\";i:2828;s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=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:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:423;s:11:\"trend_index\";i:625;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:15:{s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:542;a:15:{s:2:\"id\";i:1461;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1494352121;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:374;s:11:\"trend_index\";i:516;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:15:{s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:15:{s:2:\"id\";i:1460;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1494352124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:426;s:11:\"trend_index\";i:466;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:15:{s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:15:{s:2:\"id\";i:1459;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1494352125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:254;s:11:\"trend_index\";i:422;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:15:{s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:15:{s:2:\"id\";i:1052;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1488810873;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:47;s:11:\"trend_index\";i:158;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:549;a:15:{s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:15:{s:2:\"id\";i:1505;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1494352110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:454;s:11:\"trend_index\";i:547;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:15:{s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:15:{s:2:\"id\";i:726;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1485270062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:498;s:11:\"trend_index\";i:651;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:15:{s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:15:{s:2:\"id\";i:1613;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1494352129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:504;s:11:\"trend_index\";i:464;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:15:{s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:15:{s:2:\"id\";i:1612;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1494352127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:549;s:11:\"trend_index\";i:693;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:15:{s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:15:{s:2:\"id\";i:1614;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1494352131;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:447;s:11:\"trend_index\";i:657;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:15:{s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:15:{s:2:\"id\";i:906;s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1494352066;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:302;s:11:\"trend_index\";i:397;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:15:{s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:15:{s:2:\"id\";i:879;s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1494352064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:305;s:11:\"trend_index\";i:406;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:15:{s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:15:{s:2:\"id\";i:926;s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1494352068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:461;s:11:\"trend_index\";i:549;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:15:{s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:15:{s:2:\"id\";i:1032;s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1488810866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:715;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:15:{s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:15:{s:2:\"id\";i:730;s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1485273430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=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:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:386;s:11:\"trend_index\";i:614;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:15:{s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:15:{s:2:\"id\";i:643;s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1481549290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:518;s:11:\"trend_index\";i:748;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:15:{s:2:\"id\";i:542;s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1477388484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:128;s:11:\"trend_index\";i:355;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:15:{s:2:\"id\";i:1187;s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1490707385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:165;s:16:\"popularity_index\";i:53;s:11:\"trend_index\";i:196;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:573;a:15:{s:2:\"id\";i:641;s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1481549264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:355;s:11:\"trend_index\";i:480;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:15:{s:2:\"id\";i:189;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1470820715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:17;s:11:\"trend_index\";i:107;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:575;a:15:{s:2:\"id\";i:1547;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1494352115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:377;s:11:\"trend_index\";i:491;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:15:{s:2:\"id\";i:1546;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1494352116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:550;s:11:\"trend_index\";i:690;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:15:{s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:15:{s:2:\"id\";i:1545;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1494352118;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:425;s:11:\"trend_index\";i:404;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:15:{s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:15:{s:2:\"id\";i:2714;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:415;s:11:\"trend_index\";i:584;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:15:{s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:15:{s:2:\"id\";i:195;s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1470820765;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:72;s:11:\"trend_index\";i:242;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:583;a:15:{s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:15:{s:2:\"id\";i:197;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1470825711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:162;s:11:\"trend_index\";i:366;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:585;a:15:{s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:15:{s:2:\"id\";i:1193;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1490707422;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:86;s:11:\"trend_index\";i:245;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:587;a:15:{s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:15:{s:2:\"id\";i:1415;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1494352106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:381;s:11:\"trend_index\";i:462;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:15:{s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:15:{s:2:\"id\";i:1414;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1494352107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:573;s:11:\"trend_index\";i:670;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:15:{s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:15:{s:2:\"id\";i:1413;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1494352109;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:486;s:11:\"trend_index\";i:444;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:15:{s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:15:{s:2:\"id\";i:1573;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1494352133;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=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:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:594;s:11:\"trend_index\";i:687;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:15:{s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:15:{s:2:\"id\";i:1572;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1494352134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:632;s:11:\"trend_index\";i:774;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:15:{s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:15:{s:2:\"id\";i:1570;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1494352136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:674;s:11:\"trend_index\";i:785;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:15:{s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:15:{s:2:\"id\";i:1571;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1494352138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:647;s:11:\"trend_index\";i:737;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:15:{s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:15:{s:2:\"id\";i:192;s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1470820734;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:141;s:11:\"trend_index\";i:388;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:603;a:15:{s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:15:{s:2:\"id\";i:2141;s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";i:1499774122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:363;s:11:\"trend_index\";i:678;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:15:{s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:15:{s:2:\"id\";i:137;s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";i:1470829828;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:55;s:11:\"trend_index\";i:210;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:607;a:15:{s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:15:{s:2:\"id\";i:256;s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";i:1470829796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:154;s:11:\"trend_index\";i:370;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:609;a:15:{s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:15:{s:2:\"id\";i:2150;s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";i:1499774127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:85;s:11:\"trend_index\";i:247;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:611;a:15:{s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:15:{s:2:\"id\";i:223;s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";i:1470820471;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:157;s:11:\"trend_index\";i:354;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:15:{s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:15:{s:2:\"id\";i:24;s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";i:1470248619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:12;s:11:\"trend_index\";i:24;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:615;a:15:{s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:15:{s:2:\"id\";i:184;s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";i:1470829889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:26;s:11:\"trend_index\";i:89;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:617;a:15:{s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:15:{s:2:\"id\";i:625;s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";i:1481549196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:642;s:11:\"trend_index\";i:733;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:15:{s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:620;a:15:{s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:15:{s:2:\"id\";i:187;s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";i:1470829892;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:109;s:11:\"trend_index\";i:338;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:622;a:15:{s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:15:{s:2:\"id\";i:238;s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";i:1470829865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:25;s:11:\"trend_index\";i:51;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:15:{s:2:\"id\";i:647;s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";i:1481549320;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:517;s:11:\"trend_index\";i:529;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:15:{s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:15:{s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:15:{s:2:\"id\";i:2138;s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";i:1499774119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:456;s:11:\"trend_index\";i:545;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:15:{s:2:\"id\";i:823;s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";i:1485272966;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:384;s:11:\"trend_index\";i:416;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:15:{s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:15:{s:2:\"id\";i:824;s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";i:1485272900;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:409;s:11:\"trend_index\";i:534;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:15:{s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:15:{s:2:\"id\";i:825;s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";i:1485272513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:439;s:11:\"trend_index\";i:418;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:15:{s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:634;a:15:{s:2:\"id\";i:245;s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";i:1470829876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=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:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:107;s:11:\"trend_index\";i:276;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:635;a:15:{s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:15:{s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:637;a:15:{s:2:\"id\";i:1075;s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";i:1488810871;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:68;s:11:\"trend_index\";i:174;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:638;a:15:{s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:639;a:15:{s:2:\"id\";i:1051;s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";i:1488810869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:16;s:11:\"trend_index\";i:27;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:640;a:15:{s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:15:{s:2:\"id\";i:1245;s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";i:1491207184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:257;s:11:\"trend_index\";i:252;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:15:{s:2:\"id\";i:1247;s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";i:1491207138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:35;s:11:\"trend_index\";i:48;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:643;a:15:{s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:15:{s:2:\"id\";i:1248;s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";i:1491207050;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:427;s:11:\"trend_index\";i:601;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:15:{s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"business\",\"footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:15:{s:2:\"id\";i:1249;s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";i:1491207380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:469;s:11:\"trend_index\";i:638;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:15:{s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"business\",\"header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:15:{s:2:\"id\";i:1250;s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";i:1491207450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:82;s:11:\"trend_index\";i:104;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:649;a:15:{s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:15:{s:2:\"id\";i:1260;s:5:\"title\";s:18:\"Maintenance Mode 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";i:1491207507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:506;s:11:\"trend_index\";i:623;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:15:{s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:15:{s:2:\"id\";i:1261;s:5:\"title\";s:18:\"Maintenance Mode 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";i:1491207584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:98;s:11:\"trend_index\";i:164;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:653;a:15:{s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:15:{s:2:\"id\";i:1272;s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";i:1491207674;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:296;s:11:\"trend_index\";i:317;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:15:{s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:15:{s:2:\"id\";i:1279;s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";i:1491207756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:160;s:11:\"trend_index\";i:403;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:657;a:15:{s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:15:{s:2:\"id\";i:1745;s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";i:1494849745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:292;s:11:\"trend_index\";i:371;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:15:{s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:15:{s:2:\"id\";i:1742;s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";i:1494849744;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:470;s:11:\"trend_index\";i:616;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:15:{s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:15:{s:2:\"id\";i:1748;s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";i:1494849742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:313;s:11:\"trend_index\";i:306;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:15:{s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:15:{s:2:\"id\";i:3963;s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";i:1516284821;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:238;s:11:\"trend_index\";i:61;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:15:{s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:15:{s:2:\"id\";i:3969;s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";i:1516284829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:440;s:11:\"trend_index\";i:543;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:15:{s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:15:{s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:15:{s:2:\"id\";i:3966;s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";i:1516284839;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:275;s:11:\"trend_index\";i:528;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:15:{s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:15:{s:2:\"id\";i:3972;s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";i:1516284847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:405;s:11:\"trend_index\";i:588;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:15:{s:2:\"id\";i:2080;s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";i:1508161124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:358;s:11:\"trend_index\";i:612;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:15:{s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:15:{s:2:\"id\";i:2088;s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";i:1508161129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:487;s:11:\"trend_index\";i:683;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:15:{s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"footer\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:15:{s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"header\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:15:{s:2:\"id\";i:2085;s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";i:1508161134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:620;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:15:{s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:15:{s:2:\"id\";i:2462;s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";i:1508243317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:364;s:11:\"trend_index\";i:383;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:15:{s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:15:{s:2:\"id\";i:2362;s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";i:1508243335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:460;s:11:\"trend_index\";i:443;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:15:{s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:15:{s:2:\"id\";i:614;s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";i:1481549169;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:335;s:11:\"trend_index\";i:446;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:15:{s:2:\"id\";i:2126;s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";i:1508325849;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:271;s:11:\"trend_index\";i:311;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:15:{s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:15:{s:2:\"id\";i:2129;s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";i:1508325881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:321;s:11:\"trend_index\";i:448;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:15:{s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:15:{s:2:\"id\";i:2135;s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";i:1508325922;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:370;s:11:\"trend_index\";i:473;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:15:{s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:15:{s:2:\"id\";i:2094;s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";i:1509621053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:269;s:11:\"trend_index\";i:254;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:15:{s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:15:{s:2:\"id\";i:2120;s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";i:1509631820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:376;s:11:\"trend_index\";i:573;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:15:{s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:15:{s:2:\"id\";i:3153;s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";i:1508950132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:685;s:11:\"trend_index\";i:775;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:15:{s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:15:{s:2:\"id\";i:3338;s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";i:1511203351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:604;s:11:\"trend_index\";i:786;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:15:{s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:15:{s:2:\"id\";i:3339;s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";i:1511203636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:561;s:11:\"trend_index\";i:836;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:15:{s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:15:{s:2:\"id\";i:3335;s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";i:1511203246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:560;s:11:\"trend_index\";i:680;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:15:{s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:15:{s:2:\"id\";i:3340;s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";i:1511203713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:502;s:11:\"trend_index\";i:592;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:15:{s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:15:{s:2:\"id\";i:3517;s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";i:1513877937;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:580;s:11:\"trend_index\";i:834;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:15:{s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:15:{s:2:\"id\";i:3734;s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";i:1514197794;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:575;s:11:\"trend_index\";i:622;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:15:{s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:15:{s:2:\"id\";i:3764;s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";i:1514198234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:566;s:11:\"trend_index\";i:708;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:15:{s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:15:{s:2:\"id\";i:3565;s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";i:1514204382;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:455;s:11:\"trend_index\";i:469;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:15:{s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:15:{s:2:\"id\";i:3862;s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";i:1514206745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:473;s:11:\"trend_index\";i:518;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:15:{s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:15:{s:2:\"id\";i:3777;s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";i:1514205420;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:509;s:11:\"trend_index\";i:682;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:15:{s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:15:{s:2:\"id\";i:420;s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";i:1475067229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:22;s:11:\"trend_index\";i:160;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:15:{s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:15:{s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:15:{s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:15:{s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:15:{s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:15:{s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:15:{s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:15:{s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:15:{s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:15:{s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:15:{s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:15:{s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:15:{s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:15:{s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:15:{s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:15:{s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:15:{s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:15:{s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:735;a:15:{s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:15:{s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:15:{s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:738;a:15:{s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:739;a:15:{s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:740;a:15:{s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:15:{s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:15:{s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:15:{s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:744;a:15:{s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:745;a:15:{s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:746;a:15:{s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:15:{s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:15:{s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:15:{s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:15:{s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:15:{s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:15:{s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:15:{s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:15:{s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:15:{s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:15:{s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:15:{s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:15:{s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:15:{s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:15:{s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:761;a:15:{s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:762;a:15:{s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:763;a:15:{s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:15:{s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:15:{s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:15:{s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:15:{s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:15:{s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:15:{s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:770;a:15:{s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:771;a:15:{s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:772;a:15:{s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:15:{s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:15:{s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:15:{s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:15:{s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:15:{s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:15:{s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:15:{s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:15:{s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:15:{s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:15:{s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:15:{s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:15:{s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:15:{s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:15:{s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:15:{s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:15:{s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:15:{s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:15:{s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:15:{s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:15:{s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:15:{s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:15:{s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:15:{s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:15:{s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:15:{s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:15:{s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:15:{s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:15:{s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:15:{s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:15:{s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:15:{s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:15:{s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:15:{s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:15:{s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:15:{s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:15:{s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:15:{s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:15:{s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:811;a:15:{s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:15:{s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:813;a:15:{s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:814;a:15:{s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:815;a:15:{s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:816;a:15:{s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:817;a:15:{s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:818;a:15:{s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:819;a:15:{s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:15:{s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:15:{s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:15:{s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:15:{s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:824;a:15:{s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:825;a:15:{s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:826;a:15:{s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:827;a:15:{s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:828;a:15:{s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:15:{s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:830;a:15:{s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:831;a:15:{s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:832;a:15:{s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:833;a:15:{s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:834;a:15:{s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:835;a:15:{s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:836;a:15:{s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:837;a:15:{s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:838;a:15:{s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:839;a:15:{s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:840;a:15:{s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:841;a:15:{s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:15:{s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:843;a:15:{s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:844;a:15:{s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:845;a:15:{s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:846;a:15:{s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:847;a:15:{s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:848;a:15:{s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:849;a:15:{s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:850;a:15:{s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:851;a:15:{s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:852;a:15:{s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:853;a:15:{s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:854;a:15:{s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:855;a:15:{s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:856;a:15:{s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:857;a:15:{s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:858;a:15:{s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:859;a:15:{s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:860;a:15:{s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:861;a:15:{s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:862;a:15:{s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:863;a:15:{s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:864;a:15:{s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:865;a:15:{s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:866;a:15:{s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:867;a:15:{s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:868;a:15:{s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:869;a:15:{s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:870;a:15:{s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:871;a:15:{s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:872;a:15:{s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:873;a:15:{s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:874;a:15:{s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:875;a:15:{s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:876;a:15:{s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:877;a:15:{s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(406,'ct_theme_options','a:167:{s:8:\"last_tab\";s:0:\"\";s:7:\"favicon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:8:\"dev_mode\";s:1:\"0\";s:17:\"show_page_loading\";s:1:\"0\";s:12:\"loading_type\";s:6:\"style1\";s:11:\"loading_img\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"mouse_move_animation\";s:1:\"0\";s:16:\"newsletter_popup\";s:1:\"1\";s:15:\"newslette_title\";s:0:\"\";s:14:\"newslette_desc\";s:0:\"\";s:20:\"newslette_close_text\";s:0:\"\";s:27:\"newslette_email_placeholder\";s:0:\"\";s:13:\"header_layout\";s:2:\"22\";s:15:\"header_bg_color\";s:0:\"\";s:22:\"header_bg_color_sticky\";s:0:\"\";s:11:\"header_full\";s:1:\"0\";s:9:\"sticky_on\";s:1:\"1\";s:11:\"search_icon\";s:1:\"0\";s:26:\"h_search_field_placeholder\";s:0:\"\";s:9:\"cart_icon\";s:1:\"0\";s:17:\"cart_icon_sidebar\";s:0:\"\";s:19:\"hidden_sidebar_icon\";s:1:\"0\";s:15:\"language_switch\";s:1:\"0\";s:13:\"h_mobile_type\";s:5:\"light\";s:8:\"h_style1\";s:8:\"h-style1\";s:18:\"phone_button_label\";s:0:\"\";s:17:\"phone_button_link\";s:0:\"\";s:21:\"h_social_facebook_url\";s:1:\"#\";s:20:\"h_social_twitter_url\";s:1:\"#\";s:20:\"h_social_inkedin_url\";s:1:\"#\";s:22:\"h_social_instagram_url\";s:1:\"#\";s:19:\"h_social_google_url\";s:0:\"\";s:18:\"h_social_skype_url\";s:0:\"\";s:22:\"h_social_pinterest_url\";s:0:\"\";s:18:\"h_social_vimeo_url\";s:0:\"\";s:20:\"h_social_youtube_url\";s:0:\"\";s:17:\"h_social_yelp_url\";s:0:\"\";s:19:\"h_social_tumblr_url\";s:0:\"\";s:24:\"h_social_tripadvisor_url\";s:0:\"\";s:15:\"topbar_bg_color\";s:0:\"\";s:8:\"wellcome\";s:0:\"\";s:13:\"h_phone_label\";s:0:\"\";s:7:\"h_phone\";s:0:\"\";s:12:\"h_phone_link\";s:0:\"\";s:19:\"h_phone_link_target\";s:6:\"_blank\";s:15:\"h_address_label\";s:0:\"\";s:9:\"h_address\";s:0:\"\";s:14:\"h_address_link\";s:0:\"\";s:21:\"h_address_link_target\";s:6:\"_blank\";s:12:\"h_time_label\";s:0:\"\";s:6:\"h_time\";s:0:\"\";s:11:\"h_time_link\";s:0:\"\";s:18:\"h_time_link_target\";s:6:\"_blank\";s:13:\"h_email_label\";s:0:\"\";s:7:\"h_email\";s:0:\"\";s:12:\"h_email_link\";s:0:\"\";s:19:\"h_email_link_target\";s:6:\"_blank\";s:10:\"logo_light\";a:5:{s:3:\"url\";s:92:\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM.png\";s:2:\"id\";s:4:\"5783\";s:6:\"height\";s:3:\"336\";s:5:\"width\";s:3:\"664\";s:9:\"thumbnail\";s:100:\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM-150x150.png\";}s:4:\"logo\";a:5:{s:3:\"url\";s:92:\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM.png\";s:2:\"id\";s:4:\"5783\";s:6:\"height\";s:3:\"336\";s:5:\"width\";s:3:\"664\";s:9:\"thumbnail\";s:100:\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM-150x150.png\";}s:11:\"logo_mobile\";a:5:{s:3:\"url\";s:92:\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM.png\";s:2:\"id\";s:4:\"5783\";s:6:\"height\";s:3:\"336\";s:5:\"width\";s:3:\"664\";s:9:\"thumbnail\";s:100:\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM-150x150.png\";}s:12:\"logo_tagline\";s:0:\"\";s:9:\"logo_maxh\";a:2:{s:6:\"height\";s:4:\"75px\";s:5:\"units\";s:2:\"px\";}s:16:\"logo_maxh_sticky\";a:2:{s:6:\"height\";s:4:\"70px\";s:5:\"units\";s:2:\"px\";}s:12:\"logo_maxh_sm\";a:2:{s:6:\"height\";s:0:\"\";s:5:\"units\";s:2:\"px\";}s:9:\"font_menu\";a:7:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";}s:19:\"hamburger_btn_color\";s:0:\"\";s:17:\"icon_has_children\";s:4:\"plus\";s:15:\"main_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:7:\"menu_fs\";s:0:\"\";s:17:\"sticky_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:18:\"sub_menu_displayed\";s:9:\"sub-hover\";s:14:\"sub_menu_color\";a:3:{s:7:\"regular\";s:0:\"\";s:5:\"hover\";s:0:\"\";s:6:\"active\";s:0:\"\";}s:16:\"sub_menu_bgcolor\";s:0:\"\";s:11:\"sub_menu_fs\";s:0:\"\";s:8:\"h_btn_on\";s:4:\"show\";s:10:\"h_btn_text\";s:10:\"Appionment\";s:15:\"h_btn_link_type\";s:4:\"page\";s:10:\"h_btn_link\";s:2:\"24\";s:17:\"h_btn_link_custom\";s:0:\"\";s:12:\"h_btn_target\";s:5:\"_self\";s:9:\"h_btn_on2\";s:4:\"hide\";s:11:\"h_btn_text2\";s:10:\"Contact us\";s:16:\"h_btn_link_type2\";s:4:\"page\";s:11:\"h_btn_link2\";s:4:\"3510\";s:18:\"h_btn_link_custom2\";s:0:\"\";s:13:\"h_btn_target2\";s:5:\"_self\";s:9:\"pagetitle\";s:4:\"show\";s:9:\"ptitle_bg\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:71:\"https://dm117.dev34.info/wp-content/uploads/2020/05/bg-page-title-u.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"4639\";s:6:\"height\";s:3:\"574\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:79:\"https://dm117.dev34.info/wp-content/uploads/2020/05/bg-page-title-u-150x150.jpg\";}}s:14:\"ptitle_overlay\";s:4:\"show\";s:18:\"pagetitle_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:16:\"page_title_color\";s:0:\"\";s:18:\"page_title_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"120px\";s:14:\"padding-bottom\";s:5:\"120px\";}s:21:\"page_title_padding_sm\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:20:\"ptitle_breadcrumb_on\";s:4:\"show\";s:16:\"breadcrumb_color\";s:0:\"\";s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:24:\"search_field_placeholder\";s:0:\"\";s:19:\"archive_sidebar_pos\";s:5:\"right\";s:15:\"archive_date_on\";s:1:\"1\";s:17:\"archive_author_on\";s:1:\"1\";s:21:\"archive_categories_on\";s:1:\"0\";s:19:\"archive_comments_on\";s:1:\"1\";s:13:\"text_btn_more\";s:0:\"\";s:15:\"s_custom_header\";s:0:\"\";s:15:\"s_header_layout\";s:1:\"1\";s:18:\"s_custom_pagetitle\";s:7:\"default\";s:11:\"s_ptitle_bg\";a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:18:\"content_none_title\";s:0:\"\";s:17:\"content_none_desc\";s:0:\"\";s:16:\"post_sidebar_pos\";s:5:\"right\";s:12:\"post_date_on\";s:1:\"1\";s:14:\"post_author_on\";s:1:\"1\";s:18:\"post_categories_on\";s:1:\"1\";s:12:\"post_tags_on\";s:1:\"1\";s:8:\"f_crop_w\";s:3:\"900\";s:8:\"f_crop_h\";s:3:\"313\";s:18:\"post_navigation_on\";s:1:\"1\";s:20:\"post_social_share_on\";s:1:\"1\";s:20:\"post_social_facebook\";s:1:\"1\";s:19:\"post_social_twitter\";s:1:\"1\";s:21:\"post_social_pinterest\";s:1:\"1\";s:21:\"post_social_linkedin \";s:1:\"1\";s:12:\"sidebar_shop\";s:5:\"right\";s:16:\"product_per_page\";s:1:\"9\";s:20:\"footer_layout_custom\";s:2:\"20\";s:13:\"back_totop_on\";s:4:\"show\";s:12:\"fixed_footer\";s:1:\"1\";s:8:\"page_404\";s:7:\"default\";s:15:\"page_custom_404\";s:0:\"\";s:13:\"primary_color\";s:7:\"#ff0040\";s:15:\"secondary_color\";s:7:\"#0d2252\";s:11:\"third_color\";s:7:\"#ff0040\";s:10:\"four_color\";s:7:\"#ffd200\";s:10:\"link_color\";a:3:{s:7:\"regular\";s:7:\"#ff0040\";s:5:\"hover\";s:7:\"#0d2252\";s:6:\"active\";s:7:\"#0d2252\";}s:14:\"gradient_color\";a:2:{s:4:\"from\";s:7:\"#ff0040\";s:2:\"to\";s:7:\"#ff0040\";}s:17:\"button_type_color\";s:6:\"normal\";s:17:\"body_default_font\";s:11:\"Google-Font\";s:9:\"font_main\";a:10:{s:11:\"font-family\";s:11:\"Nunito Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:7:\"#313e5d\";}s:20:\"heading_default_font\";s:7:\"Poppins\";s:7:\"font_h1\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:7:\"#0d2252\";}s:7:\"font_h2\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:7:\"#0d2252\";}s:7:\"font_h3\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:7:\"#0d2252\";}s:7:\"font_h4\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:7:\"#0d2252\";}s:7:\"font_h5\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:7:\"font_h6\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"custom_font_1\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:23:\"custom_font_selectors_1\";s:0:\"\";s:10:\"gm_api_key\";s:39:\"AIzaSyA1rF9bttCxRmsNdZYjW7FzIoyrul5jb-s\";s:16:\"site_header_code\";s:0:\"\";s:16:\"site_footer_code\";s:0:\"\";s:17:\"portfolio_display\";s:1:\"1\";s:14:\"portfolio_slug\";s:0:\"\";s:14:\"portfolio_name\";s:0:\"\";s:22:\"archive_portfolio_link\";s:0:\"\";s:15:\"service_display\";s:1:\"1\";s:12:\"service_slug\";s:0:\"\";s:12:\"service_name\";s:0:\"\";s:20:\"archive_service_link\";s:0:\"\";s:18:\"case_study_display\";s:1:\"1\";s:15:\"case_study_slug\";s:0:\"\";s:15:\"case_study_name\";s:0:\"\";s:23:\"archive_case_study_link\";s:0:\"\";s:15:\"courses_display\";s:1:\"1\";s:12:\"courses_slug\";s:0:\"\";s:12:\"courses_name\";s:0:\"\";s:8:\"site_css\";s:0:\"\";}','yes'),(407,'ct_theme_options-transients','a:4:{s:14:\"changed_values\";a:4:{s:11:\"search_icon\";s:1:\"1\";s:9:\"cart_icon\";s:1:\"1\";s:19:\"hidden_sidebar_icon\";s:1:\"1\";s:15:\"language_switch\";s:1:\"1\";}s:9:\"last_save\";i:1617486116;s:13:\"last_compiler\";i:1617486116;s:11:\"last_import\";i:1617486116;}','yes'),(408,'booked_wc_payment_options','a:4:{s:19:\"email_confirmations\";s:14:\"after_complete\";s:17:\"enable_thumbnails\";s:6:\"enable\";s:19:\"enable_auto_cleanup\";s:7:\"disable\";s:12:\"cleanup_mode\";s:10:\"twicedaily\";}','yes'),(412,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:55:\"What Is Material Design? Definition, Uses, and Examples\";s:7:\"excerpt\";s:147:\"Material Design is the standard for designing and creating websites and apps. Discover why and learn how to use it to make a user-friendly website.\";s:7:\"created\";i:1612263675;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/what-is-material-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:53:\"Elementor SEO: How To Optimize Your Elementor Website\";s:7:\"excerpt\";s:154:\"SEO is crucial to the success of any website, but to many users, it still remains a mystery. Discover what SEO is and how to use it to optimize your site.\";s:7:\"created\";i:1611838485;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:113:\"https://elementor.com/blog/elementor-seo/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.1: Experiments, Performance Enhancements, And a New Landing Page Workflow\";s:7:\"excerpt\";s:162:\"The new Elementor version 3.1 features performance improvements, a new Landing Page area and workflow to manage your marketing pages, and exploratory experiments.\";s:7:\"created\";i:1611665700;s:5:\"badge\";s:11:\"New Feature\";s:3:\"url\";s:125:\"https://elementor.com/blog/introducing-elementor-3-1/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:33:\"How To Redirect URLs in WordPress\";s:7:\"excerpt\";s:152:\"Redirecting visitors from one page to another is an important part of website maintenance. Explore all the reasons for redirects and how to create them.\";s:7:\"created\";i:1611143960;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/redirect-url-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:33:\"How to Create the Perfect Favicon\";s:7:\"excerpt\";s:140:\"Favicons are an integral part of building up your brand and a recognizable website. Understand what they are, and how to use them correctly.\";s:7:\"created\";i:1610975844;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/favicon-complete-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(907,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"alex@inspirable.com\";s:7:\"version\";s:5:\"5.7.1\";s:9:\"timestamp\";i:1618467296;}','no'),(415,'mc4wp_version','4.8.3','yes'),(494,'_transient_woocommerce_reports-transient-version','1617481137','yes'),(501,'woocommerce_onboarding_profile','a:1:{s:7:\"skipped\";b:1;}','yes'),(420,'yith-wcqv-enable','yes','yes'),(421,'yith-wcqv-enable-mobile','yes','yes'),(422,'yith-wcqv-button-label','Quick View','yes'),(423,'yith-wcqv-background-modal','#ffffff','yes'),(424,'yith-wcqv-close-color','#cdcdcd','yes'),(425,'yith-wcqv-close-color-hover','#ff0000','yes'),(426,'yit_plugin_fw_panel_wc_default_options_set','a:2:{s:15:\"yith_wcqv_panel\";b:1;s:15:\"yith_wcwl_panel\";b:1;}','yes'),(427,'yith_wcwl_ajax_enable','no','yes'),(428,'yith_wfbt_enable_integration','yes','yes'),(429,'yith_wcwl_after_add_to_wishlist_behaviour','view','yes'),(430,'yith_wcwl_show_on_loop','no','yes'),(431,'yith_wcwl_loop_position','after_add_to_cart','yes'),(432,'yith_wcwl_button_position','after_add_to_cart','yes'),(433,'yith_wcwl_add_to_wishlist_text','Add to wishlist','yes'),(434,'yith_wcwl_product_added_text','Product added!','yes'),(435,'yith_wcwl_browse_wishlist_text','Browse wishlist','yes'),(436,'yith_wcwl_already_in_wishlist_text','The product is already in your wishlist!','yes'),(437,'yith_wcwl_add_to_wishlist_style','link','yes'),(438,'yith_wcwl_rounded_corners_radius','16','yes'),(439,'yith_wcwl_add_to_wishlist_icon','fa-heart-o','yes'),(440,'yith_wcwl_add_to_wishlist_custom_icon','','yes'),(441,'yith_wcwl_added_to_wishlist_icon','fa-heart','yes'),(442,'yith_wcwl_added_to_wishlist_custom_icon','','yes'),(443,'yith_wcwl_custom_css','','yes'),(444,'yith_wcwl_variation_show','','yes'),(445,'yith_wcwl_price_show','yes','yes'),(446,'yith_wcwl_stock_show','yes','yes'),(447,'yith_wcwl_show_dateadded','','yes'),(448,'yith_wcwl_add_to_cart_show','yes','yes'),(449,'yith_wcwl_show_remove','yes','yes'),(450,'yith_wcwl_repeat_remove_button','','yes'),(451,'yith_wcwl_redirect_cart','no','yes'),(452,'yith_wcwl_remove_after_add_to_cart','yes','yes'),(453,'yith_wcwl_enable_share','yes','yes'),(454,'yith_wcwl_share_fb','yes','yes'),(455,'yith_wcwl_share_twitter','yes','yes'),(456,'yith_wcwl_share_pinterest','yes','yes'),(457,'yith_wcwl_share_email','yes','yes'),(458,'yith_wcwl_share_whatsapp','yes','yes'),(459,'yith_wcwl_share_url','no','yes'),(460,'yith_wcwl_socials_title','My wishlist on Dealers of the','yes'),(461,'yith_wcwl_socials_text','','yes'),(462,'yith_wcwl_socials_image_url','','yes'),(463,'yith_wcwl_wishlist_title','My wishlist','yes'),(464,'yith_wcwl_add_to_cart_text','Add to cart','yes'),(465,'yith_wcwl_add_to_cart_style','link','yes'),(466,'yith_wcwl_add_to_cart_rounded_corners_radius','16','yes'),(467,'yith_wcwl_add_to_cart_icon','fa-shopping-cart','yes'),(468,'yith_wcwl_add_to_cart_custom_icon','','yes'),(469,'yith_wcwl_color_headers_background','#F4F4F4','yes'),(470,'yith_wcwl_fb_button_icon','fa-facebook','yes'),(471,'yith_wcwl_fb_button_custom_icon','','yes'),(472,'yith_wcwl_tw_button_icon','fa-twitter','yes'),(473,'yith_wcwl_tw_button_custom_icon','','yes'),(474,'yith_wcwl_pr_button_icon','fa-pinterest','yes'),(475,'yith_wcwl_pr_button_custom_icon','','yes'),(476,'yith_wcwl_em_button_icon','fa-envelope-o','yes'),(477,'yith_wcwl_em_button_custom_icon','','yes'),(478,'yith_wcwl_wa_button_icon','fa-whatsapp','yes'),(479,'yith_wcwl_wa_button_custom_icon','','yes'),(480,'sbi_notifications','a:4:{s:6:\"update\";i:1620517705;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(481,'sbi_newuser_notifications','a:4:{s:6:\"update\";i:1617481136;s:4:\"feed\";a:2:{s:6:\"review\";a:6:{s:5:\"title\";s:22:\"Could you help us out?\";s:7:\"content\";s:273:\"It\'s great to see that you\'ve been using the <strong><span>{plugin}</span></strong> plugin for a while now. Hopefully you\'re happy with it!&nbsp; If so, would you consider leaving a positive review? It really helps to support the plugin and helps others to discover it too!\";s:2:\"id\";s:6:\"review\";s:5:\"image\";s:12:\"sbi-icon.png\";s:4:\"btns\";a:4:{s:7:\"primary\";a:4:{s:3:\"url\";s:12:\"{review-url}\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}s:5:\"class\";s:31:\"sbi_notice_dismiss sbi_main_cta\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:27:\"I\'ve already given a review\";}s:5:\"later\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:12:\"Ask Me Later\";}}s:4:\"wait\";s:2:\"14\";}s:8:\"discount\";a:8:{s:5:\"title\";s:28:\"Attention {platform} Lovers!\";s:7:\"content\";s:221:\"<strong><span>Exclusive offer!</span></strong> We don\'t run promotions very often, but for a limited time we\'re offering <strong><span>{amount} off</span></strong> our Pro version to all users of our free {plugin} plugin.\";s:2:\"id\";s:8:\"discount\";s:6:\"amount\";s:3:\"60%\";s:5:\"image\";s:12:\"sbi-icon.png\";s:13:\"image_overlay\";s:7:\"60% off\";s:4:\"btns\";a:2:{s:7:\"primary\";a:4:{s:3:\"url\";s:127:\"https://smashballoon.com/{slug}/?utm_campaign={campaign}&utm_source=notices&utm_medium=newuser&discount={lowerplatform}thankyou\";s:5:\"class\";s:32:\"sbi_notice_dismiss sbi_offer_btn\";s:4:\"text\";s:14:\"Get this offer\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:31:\"sbi_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:18:\"I\'m not interested\";}}s:4:\"wait\";s:2:\"30\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(484,'has_transient','1','yes'),(485,'track_transient','1','yes'),(486,'yith_plugin_fw_promo_2019_bis','1','yes'),(487,'_elementor_installed_time','1617481136','yes'),(1404,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1620560924','no'),(1405,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1620517724','no'),(1406,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1620560924','no'),(1407,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/05/the-month-in-wordpress-april-2021/\'>The Month in WordPress: April 2021</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\'>Getting Started with the Figma WordPress Design Library</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://gutenbergtimes.com/introduction-to-global-styles-block-based-themes-and-two-weeks-of-virtual-wordpress-events-weekend-edition-168/\'>Gutenberg Times: Introduction to Global Styles, Block-based Themes and Two weeks of virtual WordPress events – Weekend Edition #168</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/a-laptop-and-a-dream-your-home-office-should-meet-your-needs?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-laptop-and-a-dream-your-home-office-should-meet-your-needs\'>WPTavern: A Laptop and a Dream: Your Home Office Should Meet Your Needs</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/classic-widgets-plugin-disables-wordpress-5-8s-upcoming-block-based-widgets-system?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=classic-widgets-plugin-disables-wordpress-5-8s-upcoming-block-based-widgets-system\'>WPTavern: Classic Widgets Plugin Disables WordPress 5.8’s Upcoming Block-Based Widgets System</a></li></ul></div>','no'),(1483,'_transient_is_multi_author','0','yes');
INSERT INTO `wpiy_options` VALUES (211,'rs-templates','a:3:{s:4:\"hash\";s:32:\"706526336079698fdc2d3f1389040815\";s:6:\"slider\";a:507:{i:0;a:22:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:22:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:22:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:22:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:22:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:22:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:22:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:22:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:22:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:22:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:22:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:22:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:22:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:22:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:22:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:22:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:22:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:22:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:23:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:36;a:22:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:22:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:22:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:22:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:22:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:22:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:22:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:25:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:22:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:22:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:25:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:25:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:25:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:25:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:25:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:22:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:22:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:25:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:25:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:25:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:25:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:22:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:22:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:25:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:25:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:25:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:25:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:25:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:25:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:25:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:25:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:25:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:25:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:25:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:25:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:25:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:25:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:25:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:25:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:25:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:25:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:25:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:25:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:22:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:22:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:25:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:22:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:22:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:22:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:22:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:22:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:22:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:22:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:22:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:22:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:25:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:25:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:25:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:25:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:25:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:25:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:25:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:25:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:25:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:25:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:25:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:25:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:25:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:25:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:25:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:25:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:25:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:25:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:25:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:25:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:25:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:25:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:25:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:25:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:22:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:22:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.6\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:22:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:25:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:25:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:25:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:25:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:25:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:25:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:25:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:25:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:25:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:25:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:25:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:25:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:25:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:25:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:22:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:22:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:22:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:236;a:25:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:25:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:25:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:25:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:25:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:25:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:25:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:25:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:25:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:25:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:25:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:22:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:248;a:22:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:22:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:22:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:25:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:252;a:25:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:253;a:25:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:254;a:25:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:255;a:25:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:256;a:25:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:257;a:25:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:258;a:25:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:259;a:25:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:260;a:22:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:22:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:22:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:22:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:22:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:22:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:25:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:25:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:268;a:25:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:269;a:25:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:270;a:25:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:271;a:25:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:272;a:25:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:273;a:25:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:274;a:25:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:275;a:25:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:276;a:25:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:277;a:25:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:278;a:25:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:279;a:25:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:280;a:25:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:281;a:25:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:282;a:25:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:283;a:25:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:284;a:25:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:285;a:25:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-package\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:286;a:25:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:287;a:25:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:288;a:25:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:289;a:25:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:290;a:25:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:291;a:25:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:292;a:25:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:293;a:25:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:294;a:25:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:295;a:25:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:296;a:22:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/retouch-before-after-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:297;a:22:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/tech-showcase-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:298;a:25:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:299;a:25:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:300;a:25:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:301;a:25:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:302;a:25:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:303;a:25:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"modern-portfolio-website-package\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:304;a:25:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:305;a:25:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:306;a:25:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:307;a:25:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:308;a:25:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:309;a:25:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:310;a:25:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:311;a:25:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:312;a:25:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:313;a:25:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:314;a:22:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/cube-animation-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:25:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:316;a:25:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:317;a:25:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:318;a:25:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:319;a:25:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:320;a:25:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:321;a:25:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:322;a:25:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:323;a:25:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:324;a:25:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:325;a:22:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/nature-explorer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:326;a:22:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:327;a:25:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:328;a:25:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:329;a:25:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:330;a:25:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:331;a:25:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:332;a:25:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:333;a:25:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:334;a:22:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/classic-cars-before-after-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:335;a:22:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:49:\"https://revolution.themepunch.com/404-error-page/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:336;a:25:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:337;a:25:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:338;a:25:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:339;a:25:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:340;a:25:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:341;a:25:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:342;a:25:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:343;a:25:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:344;a:25:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:345;a:25:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:346;a:25:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:25:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:25:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:25:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:25:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:25:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:25:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:25:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:25:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:355;a:25:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:356;a:25:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:357;a:25:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:358;a:25:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:359;a:25:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:360;a:25:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:361;a:25:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:362;a:25:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:363;a:25:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:364;a:25:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:365;a:25:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:366;a:25:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"brutal-website-template-package\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:367;a:25:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:368;a:25:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:369;a:25:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:370;a:25:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:371;a:25:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:372;a:25:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:373;a:25:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:374;a:25:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:375;a:25:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:376;a:25:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:377;a:25:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:378;a:25:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:379;a:25:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:380;a:25:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:381;a:25:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:382;a:25:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:383;a:25:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:384;a:25:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:385;a:25:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:386;a:25:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:387;a:25:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:388;a:25:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:389;a:25:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:390;a:25:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:391;a:25:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:392;a:25:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:393;a:25:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:394;a:25:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:395;a:25:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:396;a:25:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:397;a:25:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:398;a:25:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:399;a:25:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:400;a:25:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:401;a:25:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:402;a:25:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:403;a:25:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:404;a:25:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:405;a:25:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:406;a:22:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"Real-Estate-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:407;a:22:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/isometric-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:408;a:25:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:409;a:25:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:410;a:25:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:411;a:22:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:412;a:25:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:25:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:414;a:25:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:415;a:25:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:416;a:25:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:417;a:25:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:418;a:25:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:419;a:25:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:420;a:25:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:421;a:25:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:422;a:25:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:423;a:25:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:424;a:25:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:425;a:25:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:426;a:22:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:427;a:22:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:428;a:22:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:429;a:22:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:430;a:22:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:431;a:22:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-hero-image-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:22:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/launching-soon-countdown/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:22:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/under-construction/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:22:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/snow-particle-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:22:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/cyber-particle-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:25:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;a:25:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:438;a:25:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:439;a:25:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:440;a:25:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:441;a:25:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:442;a:25:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:443;a:25:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:444;a:25:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:445;a:25:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:446;a:22:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:447;a:22:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/travel-blog-carousel/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:448;a:22:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/project-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:22:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/news-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:25:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:451;a:25:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:452;a:25:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:453;a:25:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:454;a:25:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:455;a:25:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:456;a:25:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:457;a:25:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:458;a:25:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:459;a:25:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:460;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:461;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:462;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:464;a:27:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;s:10:\"push_image\";b:1;}i:465;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:466;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:469;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:470;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:471;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:472;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:473;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:479;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:480;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:481;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:482;a:22:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/black-friday-video-scroll/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:370:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:483;a:25:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:484;a:25:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:485;a:25:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:486;a:25:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:487;a:25:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:488;a:25:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:489;a:25:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:490;a:25:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:491;a:25:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:492;a:25:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:493;a:25:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:494;a:25:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:495;a:22:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:65:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:496;a:22:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:544:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:497;a:22:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:498;a:25:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:499;a:25:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:500;a:25:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:501;a:25:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:502;a:25:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:503;a:25:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:504;a:25:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:505;a:25:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:506;a:25:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:507;a:25:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:508;a:25:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:509;a:25:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:510;a:25:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:511;a:25:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:512;a:25:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:513;a:22:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:514;a:22:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:515;a:25:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:516;a:25:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:517;a:22:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/creative-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:518;a:22:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:80:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:519;a:22:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:520;a:22:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/saas-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:521;a:25:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:522;a:25:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:523;a:25:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;}i:524;a:23:{s:2:\"id\";s:3:\"560\";s:5:\"title\";s:32:\"Gaming Stats Presentation Slider\";s:5:\"alias\";s:32:\"gaming-stats-presentation-slider\";s:3:\"zip\";s:36:\"gaming-stats-presentation-slider.zip\";s:3:\"uid\";s:32:\"988df5050f2a45a108ef32518a725bf8\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";s:7:\"preview\";s:76:\"https://www.sliderrevolution.com/templates/charts-addon-presentation-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.4.11\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">Create interactive presentations and showcase statistics with unique and customizable charts</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:159:\"[{\"path\":\"revslider-charts-addon\\/revslider-charts-addon.php\",\"name\":\"Charts AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-04-29 09:50:58\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}}s:6:\"slides\";a:502:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}s:32:\"gaming-stats-presentation-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"gaming-stats-presentation-slider/slide5.jpg\";}}}}','no'),(499,'mc4wp_flash_messages','a:0:{}','no'),(512,'ct_ie_term_imported','imported','yes'),(510,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),(522,'category_children','a:0:{}','yes'),(523,'portfolio-category_children','a:0:{}','yes'),(524,'service-category_children','a:0:{}','yes'),(525,'case-study-category_children','a:0:{}','yes'),(526,'elementor_library_category_children','a:0:{}','yes'),(519,'_transient_product_query-transient-version','1620519588','yes'),(537,'_elementor_global_css','a:6:{s:4:\"time\";i:1617481425;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(528,'_transient_product-transient-version','1617481336','yes'),(529,'ct_ie_demo_installed','immigration','yes'),(531,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:16;s:3:\"all\";i:16;s:8:\"approved\";s:2:\"16\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(541,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(542,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(543,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(659,'ct_page_options','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(1417,'_transient_timeout_orders-all-statuses','1621122762','no'),(1418,'_transient_orders-all-statuses','a:2:{s:7:\"version\";s:10:\"1617481137\";s:5:\"value\";a:0:{}}','no'),(660,'post_format_audio','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(661,'post_format_link','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(662,'post_format_quote','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(663,'post_format_video','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(664,'post_format_gallery','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(665,'service_option','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(666,'courses_option','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(667,'portfolio_option','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(668,'case_study_option','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(669,'post_option','a:38:{s:17:\"_wp_page_template\";s:7:\"default\";s:13:\"custom_header\";s:1:\"1\";s:13:\"header_layout\";s:2:\"19\";s:16:\"custom_pagetitle\";s:4:\"show\";s:12:\"custom_title\";s:7:\"Contact\";s:9:\"ptitle_bg\";a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}s:14:\"ptitle_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}s:16:\"content_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:15:\"content_padding\";a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}s:17:\"show_sidebar_page\";s:0:\"\";s:16:\"sidebar_page_pos\";s:5:\"right\";s:13:\"custom_footer\";s:0:\"\";s:20:\"footer_layout_custom\";s:0:\"\";s:20:\"_elementor_edit_mode\";s:7:\"builder\";s:24:\"_elementor_template_type\";s:7:\"wp-page\";s:18:\"_elementor_version\";s:5:\"3.1.4\";s:15:\"_elementor_data\";s:1288:\"[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]\";s:10:\"_edit_lock\";s:12:\"1620519617:1\";s:25:\"_elementor_controls_usage\";a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}s:14:\"_elementor_css\";a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}s:10:\"_edit_last\";s:1:\"1\";s:10:\"p_h_style1\";s:11:\"themeoption\";s:11:\"p_logo_dark\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"p_logo_light\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:13:\"p_logo_mobile\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"page_h_phone\";s:0:\"\";s:11:\"page_h_time\";s:0:\"\";s:13:\"h_custom_menu\";s:0:\"\";s:18:\"h_custom_menu_left\";s:0:\"\";s:19:\"h_custom_menu_right\";s:0:\"\";s:18:\"p_page_title_color\";s:0:\"\";s:14:\"ptitle_overlay\";s:11:\"themeoption\";s:22:\"ptitle_breadcrumb_page\";s:11:\"themeoption\";s:23:\"ptitle_breadcrumb_color\";s:0:\"\";s:12:\"p_bg_content\";a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:12:\"loading_page\";s:11:\"themeoption\";s:12:\"loading_type\";s:6:\"style1\";s:15:\"page_back_totop\";s:11:\"themeoption\";}','yes'),(670,'ct_page_options-transients','a:2:{s:14:\"changed_values\";a:0:{}s:9:\"last_save\";i:1620519575;}','yes'),(683,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(802,'_transient_health-check-site-status-result','{\"good\":\"14\",\"recommended\":\"6\",\"critical\":\"0\"}','yes'),(1265,'_site_transient_timeout_browser_ffaea5afed51f1a1b2cdc996aed545be','1620948712','no'),(1266,'_site_transient_browser_ffaea5afed51f1a1b2cdc996aed545be','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"78.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(1267,'_site_transient_timeout_php_check_6a93f292d9a273c004fc36e1f86d97b3','1620948712','no'),(1268,'_site_transient_php_check_6a93f292d9a273c004fc36e1f86d97b3','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no');
/*!40000 ALTER TABLE `wpiy_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_postmeta`
--

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

--
-- Dumping data for table `wpiy_postmeta`
--

LOCK TABLES `wpiy_postmeta` WRITE;
/*!40000 ALTER TABLE `wpiy_postmeta` DISABLE KEYS */;
INSERT INTO `wpiy_postmeta` VALUES (1,237,'_wp_attached_file','2019/11/author-01.jpg'),(2,237,'_wp_attachment_wp_user_avatar','2'),(3,238,'_wp_attached_file','2019/11/author-02.jpg'),(4,238,'_wp_attachment_wp_user_avatar','3'),(5,397,'_wp_attached_file','2019/11/testimonial-01.jpg'),(6,398,'_wp_attached_file','2019/11/testimonial-02.jpg'),(7,399,'_wp_attached_file','2019/11/testimonial-03.jpg'),(8,400,'_wp_attached_file','2019/11/testimonial-04.jpg'),(9,401,'_wp_attached_file','2019/11/testimonial-05.jpg'),(10,402,'_wp_attached_file','2019/11/testimonial-06.jpg'),(11,997,'_wp_attached_file','2019/11/client-01.png'),(12,998,'_wp_attached_file','2019/11/client-02.png'),(13,999,'_wp_attached_file','2019/11/client-03.png'),(14,1000,'_wp_attached_file','2019/11/client-04.png'),(15,1512,'_wp_attached_file','2019/11/bg-page-title.jpg'),(16,1516,'_wp_attached_file','2019/10/bg-footer1.png'),(17,1522,'_wp_attached_file','2019/10/app-store.png'),(18,1524,'_wp_attached_file','2019/10/google-play.png'),(19,1530,'_wp_attached_file','2019/11/theme-01.jpg'),(20,1531,'_wp_attached_file','2019/11/theme-02.jpg'),(21,1532,'_wp_attached_file','2019/11/theme-03.jpg'),(22,1533,'_wp_attached_file','2019/11/theme-04.jpg'),(23,1534,'_wp_attached_file','2019/11/theme-05.jpg'),(24,1535,'_wp_attached_file','2019/11/theme-06.jpg'),(25,1536,'_wp_attached_file','2019/11/theme-07.jpg'),(26,1537,'_wp_attached_file','2019/11/theme-08.jpg'),(27,1538,'_wp_attached_file','2019/11/theme-09.jpg'),(28,1539,'_wp_attached_file','2019/11/theme-10.jpg'),(29,1540,'_wp_attached_file','2019/11/theme-11.jpg'),(30,1541,'_wp_attached_file','2019/11/theme-12.jpg'),(31,1542,'_wp_attached_file','2019/11/theme-13.jpg'),(32,1543,'_wp_attached_file','2019/11/theme-14.jpg'),(33,1552,'_wp_attached_file','2019/12/gallery-01.jpg'),(34,1553,'_wp_attached_file','2019/12/gallery-02.jpg'),(35,1554,'_wp_attached_file','2019/12/gallery-03.jpg'),(36,1555,'_wp_attached_file','2019/12/gallery-04.jpg'),(37,1556,'_wp_attached_file','2019/12/gallery-05.jpg'),(38,1557,'_wp_attached_file','2019/12/gallery-06.jpg'),(39,1568,'_wp_attached_file','2019/12/contact-about1.png'),(40,1656,'_wp_attached_file','2019/12/testimonial-07.jpg'),(41,1657,'_wp_attached_file','2019/12/testimonial-08.jpg'),(42,1658,'_wp_attached_file','2019/12/testimonial-09.jpg'),(43,1678,'_wp_attached_file','2019/12/client-05.png'),(44,1690,'_wp_attached_file','2019/12/team-01.jpg'),(45,1691,'_wp_attached_file','2019/12/team-02.jpg'),(46,1692,'_wp_attached_file','2019/12/team-03.jpg'),(47,1693,'_wp_attached_file','2019/12/team-04.jpg'),(48,1706,'_wp_attached_file','2019/12/team-single.jpg'),(49,1860,'_wp_attached_file','2019/12/theme-15.jpg'),(50,1877,'_wp_attached_file','2019/12/about1.png'),(51,1892,'_wp_attached_file','2019/12/signature.png'),(52,1896,'_wp_attached_file','2019/12/about-gap.png'),(53,1925,'_wp_attached_file','2019/12/BlackBlazer.jpg'),(54,1926,'_wp_attached_file','2019/12/BlackDress.jpg'),(55,1927,'_wp_attached_file','2019/12/BlackShoes.jpg'),(56,1928,'_wp_attached_file','2019/12/BlackSuit.jpg'),(57,1929,'_wp_attached_file','2019/12/CamiSkaterFront.jpg'),(58,1930,'_wp_attached_file','2019/12/ChelseaBoots.jpg'),(59,1931,'_wp_attached_file','2019/12/FlatShoes.jpg'),(60,1932,'_wp_attached_file','2019/12/GreyShirt.jpg'),(61,1933,'_wp_attached_file','2019/12/LightBlueShirt.jpg'),(62,1934,'_wp_attached_file','2019/12/MonochromeCamiMidi.jpg'),(63,1935,'_wp_attached_file','2019/12/PureSilkBlackTie.jpg'),(64,1936,'_wp_attached_file','2019/12/PureSilkBlueTie.jpg'),(65,1937,'_wp_attached_file','2019/12/PureSilkGreyTie.jpg'),(66,1938,'_wp_attached_file','2019/12/SlimFitBrightBlue.jpg'),(67,1939,'_wp_attached_file','2019/12/WhiteTailoredBlazer.jpg'),(68,1985,'_wp_attached_file','2019/12/icon-google.png'),(69,1988,'_wp_attached_file','2019/12/icon-career.png'),(70,1989,'_wp_attached_file','2019/12/icon-codecanyon.png'),(71,1990,'_wp_attached_file','2019/12/icon-envato.png'),(72,1991,'_wp_attached_file','2019/12/icon-themeforest.png'),(73,2056,'_wp_attached_file','2019/12/bg-section-01.png'),(74,2070,'_wp_attached_file','2019/12/bg-section-02.png'),(75,2074,'_wp_attached_file','2019/12/testimonial-10.jpg'),(76,2091,'_wp_attached_file','2019/12/bg-section-03.png'),(77,2114,'_wp_attached_file','2019/12/home-team-01.jpg'),(78,2115,'_wp_attached_file','2019/12/home-team-02.jpg'),(79,2116,'_wp_attached_file','2019/12/home-team-03.jpg'),(80,2117,'_wp_attached_file','2019/12/home-team-04.jpg'),(81,2125,'_wp_attached_file','2019/12/bg-section-04.png'),(82,2170,'_wp_attached_file','2019/12/home-author-01.jpg'),(83,2170,'_wp_attachment_wp_user_avatar','1'),(84,2171,'_wp_attached_file','2019/12/home-author-02.jpg'),(85,2179,'_wp_attached_file','2019/12/award-year.png'),(86,2180,'_wp_attached_file','2019/12/award.png'),(87,2306,'_wp_attached_file','2019/12/banner-01.png'),(88,2319,'_wp_attached_file','2019/12/signature-02.png'),(89,2391,'_wp_attached_file','2019/12/bg-section-05.png'),(90,2528,'_wp_attached_file','2019/12/bg-section-07.png'),(91,2602,'_wp_attached_file','2019/12/bg-section-07-1.png'),(92,2606,'_wp_attached_file','2019/12/h3-team-02.png'),(93,2608,'_wp_attached_file','2019/12/h3-team-01.jpg'),(94,2609,'_wp_attached_file','2019/12/h3-team-03.jpg'),(95,2610,'_wp_attached_file','2019/12/h3-team-04.jpg'),(96,2671,'_wp_attached_file','2019/12/h3-map.png'),(97,2725,'_wp_attached_file','2019/12/h4-about1.png'),(98,2845,'_wp_attached_file','2019/12/h4-map.png'),(99,3282,'_wp_attached_file','2020/01/h6-bg-section-01.png'),(100,3383,'_wp_attached_file','2020/02/h6-team1.jpg'),(101,3399,'_wp_attached_file','2020/02/h6-team2.jpg'),(102,3400,'_wp_attached_file','2020/02/h6-team3.jpg'),(103,3401,'_wp_attached_file','2020/02/h6-team4.jpg'),(104,3411,'_wp_attached_file','2020/02/h6-bg-section-02.png'),(105,3614,'_wp_attached_file','2020/02/theme23.jpg'),(106,3628,'_wp_attached_file','2020/02/about-section-01.jpg'),(107,3663,'_wp_attached_file','2020/02/about4-icon1.png'),(108,3664,'_wp_attached_file','2020/02/about4-icon2.png'),(109,3665,'_wp_attached_file','2020/02/about4-icon3.png'),(110,3669,'_wp_attached_file','2020/02/about4-bg-section1.png'),(111,3679,'_wp_attached_file','2020/02/h4-about1.png'),(112,3681,'_wp_attached_file','2020/02/about4-shape1.png'),(113,3852,'_wp_attached_file','2020/02/contact-v4.png'),(114,4639,'_wp_attached_file','2020/05/bg-page-title-u.jpg'),(115,4703,'_wp_attached_file','2019/11/update-blog1.jpg'),(116,4704,'_wp_attached_file','2019/11/update-blog2.jpg'),(117,4705,'_wp_attached_file','2019/11/update-blog3.jpg'),(118,4715,'_wp_attached_file','2020/03/update-service-01.jpg'),(119,4716,'_wp_attached_file','2020/03/update-service-02.jpg'),(120,4801,'_wp_attached_file','2019/12/corporate-portfolio1.jpg'),(121,4802,'_wp_attached_file','2019/12/corporate-portfolio2.jpg'),(122,4803,'_wp_attached_file','2019/12/corporate-portfolio3.jpg'),(123,4804,'_wp_attached_file','2019/12/corporate-portfolio4.jpg'),(124,4805,'_wp_attached_file','2019/12/corporate-portfolio5.jpg'),(125,4959,'_wp_attached_file','2020/06/client-img1.png'),(126,4960,'_wp_attached_file','2020/06/client-img2.png'),(127,4961,'_wp_attached_file','2020/06/client-img3.png'),(128,4962,'_wp_attached_file','2020/06/client-img4.png'),(129,4963,'_wp_attached_file','2020/06/client-img5.png'),(130,5345,'_wp_attached_file','2020/10/logo.png'),(131,5346,'_wp_attached_file','2020/10/favicon.png'),(132,5365,'_wp_attached_file','2019/10/logo-footer.png'),(133,5370,'_wp_attached_file','2020/10/bg-slider-01.jpg'),(134,5373,'_wp_attached_file','2020/10/bg-slider-02.jpg'),(135,5374,'_wp_attached_file','2020/10/bg-slider-03.jpg'),(136,5377,'_wp_attached_file','2020/10/bg-fancybox-01.jpg'),(137,5389,'_wp_attached_file','2020/10/banner-01.jpg'),(138,5398,'_wp_attached_file','2020/10/bg-section-01_02.jpg'),(139,5413,'_wp_attached_file','2020/10/bg-section-02.jpg'),(140,5440,'_wp_attached_file','2020/10/women-01.png'),(141,5454,'_wp_attached_file','2020/10/flag-01.png'),(142,5455,'_wp_attached_file','2020/10/flag-02.png'),(143,5456,'_wp_attached_file','2020/10/flag-03.png'),(144,5457,'_wp_attached_file','2020/10/flag-04.png'),(145,5458,'_wp_attached_file','2020/10/flag-05.png'),(146,5460,'_wp_attached_file','2020/10/section-map.png'),(147,5478,'_wp_attached_file','2020/10/bg-section-03.jpg'),(148,5489,'_wp_attached_file','2020/10/bg-section-04.jpg'),(149,5514,'_wp_attached_file','2020/10/ud-testimonial-01.jpg'),(150,5515,'_wp_attached_file','2020/10/ud-testimonial-02.jpg'),(151,5516,'_wp_attached_file','2020/10/ud-testimonial-03.jpg'),(152,5534,'_wp_attached_file','2019/11/ud-blog1.jpg'),(153,1214,'_elementor_edit_mode','builder'),(154,1214,'_elementor_template_type','section'),(155,1214,'_elementor_version','2.8.2'),(156,1214,'_wp_page_template','default'),(157,1214,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$29\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$49\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$59\",\"time\":\"\\/ monthly\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(158,1214,'post_views_count','10'),(159,1214,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(160,1217,'_elementor_edit_mode','builder'),(161,1217,'_elementor_template_type','section'),(162,1217,'_elementor_version','2.8.5'),(163,1217,'_wp_page_template','default'),(164,1217,'_elementor_data','[{\"id\":\"c6873c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9c326ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c811c1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$49\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeIn\",\"_css_classes\":\"animate-time1\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"ba9c4e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d726b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"<del>Security management<\\/del>\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$89\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time2\",\"recommended\":\"Recommended\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"9c8bcbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2836832\",\"elType\":\"widget\",\"settings\":{\"title\":\"Extended Plan\",\"description\":\"The argument in favor of using to filler text goes something.\",\"content_list\":[{\"content\":\"24\\/7 system monitoring\",\"_id\":\"351129b\",\"active\":\"yes\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"no\"},{\"content\":\"Secure finance backup\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"Remote support\",\"_id\":\"cb31418\",\"active\":\"yes\"}],\"price\":\"$120\",\"time\":\"\\/ year\",\"button_text\":\"Get a free trial\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time3\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(165,1217,'post_views_count','6'),(166,1217,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:8:{s:5:\"title\";i:3;s:11:\"description\";i:3;s:12:\"content_list\";i:3;s:5:\"price\";i:3;s:4:\"time\";i:3;s:11:\"button_text\";i:3;s:11:\"button_link\";i:3;s:11:\"recommended\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(167,2331,'_elementor_edit_mode','builder'),(168,2331,'_elementor_template_type','page'),(169,2331,'_elementor_version','2.8.1'),(170,2331,'post_views_count','7'),(171,2331,'_wp_page_template','default'),(172,2331,'_elementor_data','[{\"id\":\"d1cb5f8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"64b6c6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4cc1412\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Forging relationships between multi-national corporations, governments and global NGOs begins with connections between people. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b3cc92\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Corporate\",\"percent\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"_id\":\"d6cdbb5\"},{\"title\":\"Commercial\",\"percent\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"_id\":\"49b0207\"},{\"title\":\"Business\",\"percent\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_id\":\"4661156\"}],\"title_color\":\"#FFFFFF\",\"percent_color\":\"#FFFFFF\",\"bar_color\":\"#1A2742\"},\"elements\":[],\"widgetType\":\"ct_progressbar\"}],\"isInner\":false}],\"isInner\":false}]'),(173,2331,'_elementor_controls_usage','a:4:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_progressbar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:16:\"progressbar_list\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_title\";a:3:{s:11:\"title_color\";i:1;s:13:\"percent_color\";i:1;s:9:\"bar_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(174,2439,'_thumbnail_id','1540'),(175,2439,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(176,2439,'slide_template',''),(177,2439,'_wp_page_template','default'),(178,2439,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(179,2439,'_elementor_edit_mode','builder'),(180,2439,'_elementor_template_type','wp-post'),(181,2439,'_elementor_version','2.8.1'),(182,2439,'post_views_count','0'),(183,2439,'_elementor_data','[{\"id\":\"340cbfdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cf659e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7372ea55\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2868029f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2690ecfe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1661230c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7fe8a59d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53d82b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-11.jpg\",\"id\":1540},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"331e7402\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3deccc7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5318ff72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ad17de4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e4da6f8\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42701245\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6ff1f6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"316e9fea\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(184,2439,'rs_page_bg_color',''),(185,2439,'_wp_old_slug','on-behalf-of-world-bank-an-advocom-group'),(186,2439,'case_study_except','Lorem Ipsum is simply dummy text of the printing and typesetting industry.'),(187,2440,'_thumbnail_id','1536'),(188,2440,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(189,2440,'slide_template',''),(190,2440,'_wp_page_template','default'),(191,2440,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(192,2440,'_elementor_edit_mode','builder'),(193,2440,'_elementor_template_type','wp-post'),(194,2440,'_elementor_version','2.8.1'),(195,2440,'_elementor_data','[{\"id\":\"748ab28d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc47420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"aaa25c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"660bb42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a0a7e9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73c74dc2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bef493b\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78442ac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"52b0f8e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db03d66\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"731d0d4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7270f1e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e9f61\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77721e8f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"71153a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"658f843d\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(196,2440,'rs_page_bg_color',''),(197,2440,'_wp_old_slug','developing-a-program-to-be-alleviate-poverty'),(198,2440,'case_study_except','Lorem Ipsum is simply dummy text of the printing and typesetting industry.'),(199,2441,'_thumbnail_id','1537'),(200,2441,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(201,2441,'slide_template',''),(202,2441,'_wp_page_template','default'),(203,2441,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(204,2441,'_elementor_edit_mode','builder'),(205,2441,'_elementor_template_type','wp-post'),(206,2441,'_elementor_version','2.8.1'),(207,2441,'_elementor_data','[{\"id\":\"4b622493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"234c95f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6d3f64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"34a4b4fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"10f4d334\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"208b03a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3559fe71\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4758f776\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5bc799b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37f5a5ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"386c6f32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e5b84a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5386a630\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30fe9fbc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1e70909a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3d3deaf6\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(208,2441,'rs_page_bg_color',''),(209,2441,'case_study_except','Lorem Ipsum is simply dummy text of the printing and typesetting industry.'),(210,2442,'_thumbnail_id','1541'),(211,2442,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(212,2442,'slide_template',''),(213,2442,'_wp_page_template','default'),(214,2442,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(215,2442,'_elementor_edit_mode','builder'),(216,2442,'_elementor_template_type','wp-post'),(217,2442,'_elementor_version','2.8.1'),(218,2442,'_elementor_data','[{\"id\":\"76b672b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2584e90f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273f5ae9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Case Studies\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"5cb7221f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f5a4cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7059f46c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"54a846cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11e5f03c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"677fe665\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"62c7ab10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"23bc3b25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"37bc7c6b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1946a97a\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40019989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"633b2d29\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52624d78\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(219,2442,'rs_page_bg_color',''),(220,2442,'_wp_old_slug','international-business-development-relationships'),(221,2442,'case_study_except','Lorem Ipsum is simply dummy text of the printing and typesetting industry.'),(222,3872,'_elementor_edit_mode','builder'),(223,3872,'_elementor_template_type','section'),(224,3872,'_elementor_version','2.8.5'),(225,3872,'post_views_count','2'),(226,3872,'_wp_page_template','default'),(227,3872,'_elementor_data','[{\"id\":\"7f5cbd63\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43484ebe\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7b6dc952\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$499\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3887},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"5ae0ebee\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2a9c5d45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3888},\"box_bg_color\":\"#000000\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"609a9e8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2b4161c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$599\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3889},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"12576590\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4a12a6ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$699\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3890},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(228,3872,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:13:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(229,3876,'_elementor_edit_mode','builder'),(230,3876,'_elementor_template_type','section'),(231,3876,'_elementor_version','2.8.5'),(232,3876,'post_views_count','1'),(233,3876,'_wp_page_template','default'),(234,3876,'_elementor_data','[{\"id\":\"33a40038\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f276f89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"488fdba\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Business\",\"description\":\"1-4 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$99\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-01.png\",\"id\":3887},\"selected_icon\":{\"value\":\"flaticon flaticon-report\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"8a7b665\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d68f4b4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Small Business\",\"description\":\"5-19 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$199\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$500<\\/cite>\",\"recommended\":\"Best choice\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-02.png\",\"id\":3888},\"box_bg_color\":\"#000000\",\"content_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"flaticon flaticon-social-media\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"f582dc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"559076c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Growing Business\",\"description\":\"20-39 Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$299\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-03.png\",\"id\":3889},\"selected_icon\":{\"value\":\"flaticon flaticon-leadership\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false},{\"id\":\"4b28e043\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a416d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Large Business\",\"description\":\"Unlimited Employees\",\"content_list\":[{\"content\":\"<del>24\\/7 system monitoring<\\/del>\",\"_id\":\"351129b\",\"active\":\"no\"},{\"content\":\"Security management\",\"_id\":\"873275c\",\"active\":\"yes\"},{\"content\":\"<del>Secure finance backup<\\/del>\",\"_id\":\"730077f\",\"active\":\"no\"},{\"content\":\"<del>Remote support<\\/del>\",\"_id\":\"cb31418\",\"active\":\"no\"}],\"price\":\"$399\",\"time\":\"\\/ monthly\",\"button_text\":\"Try now\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_css_classes\":\"animate-time1\",\"layout\":\"2\",\"feature_l2\":\"Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500<\\/cite>\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-pricing-04.png\",\"id\":3890},\"selected_icon\":{\"value\":\"flaticon flaticon-bank\",\"library\":\"flaticon\"}},\"elements\":[],\"widgetType\":\"ct_pricing\"}],\"isInner\":false}],\"isInner\":false}]'),(235,3876,'_elementor_controls_usage','a:3:{s:10:\"ct_pricing\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:13:{s:5:\"title\";i:4;s:11:\"description\";i:4;s:12:\"content_list\";i:4;s:5:\"price\";i:4;s:4:\"time\";i:4;s:11:\"button_text\";i:4;s:11:\"button_link\";i:4;s:10:\"feature_l2\";i:4;s:10:\"icon_image\";i:4;s:13:\"selected_icon\";i:4;s:11:\"recommended\";i:1;s:12:\"box_bg_color\";i:1;s:13:\"content_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:4;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(236,4540,'_elementor_edit_mode','builder'),(237,4540,'_elementor_template_type','kit'),(238,4540,'_elementor_version','2.9.8'),(239,4540,'_elementor_page_settings','a:7:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:21:\"global_image_lightbox\";s:3:\"yes\";s:11:\"viewport_md\";s:0:\"\";s:11:\"viewport_lg\";s:0:\"\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:8:\"4667c7bc\";s:5:\"title\";s:14:\"Saved Color #5\";s:5:\"color\";s:7:\"#4054B2\";}i:1;a:3:{s:3:\"_id\";s:8:\"72237fa2\";s:5:\"title\";s:14:\"Saved Color #6\";s:5:\"color\";s:7:\"#23A455\";}i:2;a:3:{s:3:\"_id\";s:8:\"58c66546\";s:5:\"title\";s:14:\"Saved Color #7\";s:5:\"color\";s:4:\"#000\";}i:3;a:3:{s:3:\"_id\";s:8:\"497f31bd\";s:5:\"title\";s:14:\"Saved Color #8\";s:5:\"color\";s:4:\"#FFF\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:16:\"Primary Headline\";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:18:\"Secondary Headline\";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:9:\"Body 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:11:\"Accent Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}}'),(240,4587,'_wp_page_template','default'),(241,4587,'slide_template',''),(242,4587,'rs_page_bg_color',''),(243,4587,'_elementor_edit_mode','builder'),(244,4587,'_elementor_template_type','wp-post'),(245,4587,'_elementor_version','3.0.11'),(246,4587,'post_views_count','0'),(247,4587,'_elementor_data','[{\"id\":\"4f149ec4\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"4b1d1c2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"350c630c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cbcb732\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f1b278e\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"caca81d\"},{\"text\":\"Business 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business3\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9956471\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee551da\"},{\"text\":\"Immigration\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ce8a46\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"51f926d\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7d1a42f\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"215faf9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"6a11a2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Multi Pages\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"407d18db\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-agency\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\"},{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3c17032\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5c240\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"882b4dc\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c74ecc8\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e79358f\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d742a35\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"68a5a23\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"78dbb901\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"5b68931c\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"15ed8c26\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Finance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\"},{\"text\":\"Finance 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-finance2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"996b269\"},{\"text\":\"Finance RTL\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-rtl\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"16340a3\"},{\"text\":\"Business 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f1b278e\"},{\"text\":\"Business 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"caca81d\"},{\"text\":\"Business 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-business3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5fc2e9f\"},{\"text\":\"Corporate 1\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate1\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\"},{\"text\":\"Corporate 2\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate2\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\"},{\"text\":\"Corporate 3\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corporate3\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ee551da\"},{\"text\":\"Immigration\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fdb479e\"},{\"text\":\"Law\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-law\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"51f926d\"},{\"text\":\"Startup\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-startup\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7d1a42f\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"7cb3d0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"15c22479\",\"elType\":\"widget\",\"settings\":{\"title\":\"One Page\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"267327f9\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Agency\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-agency\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"665b039\"},{\"text\":\"Human Resource\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-hr\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"daf5599\"},{\"text\":\"Life Coach\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-coach\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"dfebfc5\"},{\"text\":\"Marketing\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-marketing\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"669959a\"},{\"text\":\"Medical\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-medical\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d20a6af\"},{\"text\":\"IT Solution\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-it\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bd5c240\"},{\"text\":\"Tax Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-tax\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"882b4dc\"},{\"text\":\"Insurance\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-insurance\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c74ecc8\"},{\"text\":\"Corona\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-corona\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e79358f\"},{\"text\":\"Consulting\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-consulting\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d742a35\"},{\"text\":\"Software\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio-software\\/home-onepage\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"68a5a23\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(248,4587,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:28:\"title_typography_font_weight\";i:4;s:18:\"title_space_bottom\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(249,5137,'_wp_page_template','default'),(250,5137,'slide_template',''),(251,5137,'rs_page_bg_color',''),(252,5137,'_elementor_edit_mode','builder'),(253,5137,'_elementor_template_type','wp-post'),(254,5137,'_elementor_version','2.9.14'),(255,5137,'_elementor_data','[{\"id\":\"11f7370\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"27051da4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"27f95fa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interactive Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"43420956\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Testimonials\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/testimonials-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Blog Slider\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/blog-slider\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-newspaper\",\"library\":\"flaticonv3\"},\"_id\":\"25caa4d\",\"label\":\"\"},{\"text\":\"Portfolio Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/elements-portfolio-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"d1a9a4f\"},{\"text\":\"Service Carousel\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/service-carousel\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv3 flaticonv3-portfolio\",\"library\":\"flaticonv3\"},\"label\":\"\",\"_id\":\"be7ce10\"},{\"text\":\"Clients\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/clients\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"be34909\",\"label\":\"\"},{\"text\":\"History\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/history\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-history\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"7c5833e\"},{\"text\":\"Video Button\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/video-button\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-play-circle\",\"library\":\"fa-solid\"},\"_id\":\"f422155\",\"label\":\"\"},{\"text\":\"Columns\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/columns\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-columns\",\"library\":\"fa-solid\"},\"_id\":\"29a7115\",\"label\":\"\"},{\"text\":\"Row background\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/row-background\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-open-in-browser\",\"library\":\"material\"},\"_id\":\"f15ef7b\",\"label\":\"\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"48fd0d3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"22b25e08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Standard Elements\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1014293\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Team Variations\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/team-variations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Buttons\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/buttons\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-dice-d6\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"cf56e8c\"},{\"text\":\"Tabs & Tours\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/tabs-tours\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ellipsis-h\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"2c2b9ad\"},{\"text\":\"Accordions & Toggles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/accordions-toggles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-server\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"0e5b944\"},{\"text\":\"Google Maps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/google-maps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-google-maps\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"b20f99c\"},{\"text\":\"Contact Forms 7\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/contact-forms-7\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-account-box-phone\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ec42890\"},{\"text\":\"Dividers\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dividers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-cut\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"3f7d182\"},{\"text\":\"Pricing Tables\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/pricing-tables\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-table\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"06e7c95\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"2d73d8d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"2ce67e5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Infographics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"50694cfe\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Counters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/counters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"fas fa-sort-numeric-up\",\"library\":\"fa-solid\"},\"label\":\"\"},{\"text\":\"Progress Bars\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/progress-bars\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-chart-line\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"53244c0\"},{\"text\":\"Icon With Text\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-with-text\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-gift\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"388c124\"},{\"text\":\"Icon Grid\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/icon-grid\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-crown\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"10e9966\"},{\"text\":\"Image Box Fancy\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/image-box-fancy\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-collection-folder-image\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"ac49e20\"},{\"text\":\"Cover Boxes\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/cover-boxes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-ticket-alt\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"caed56f\"},{\"text\":\"Newsletters\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/newsletters\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-envelope-open-text\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"d119127\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false},{\"id\":\"5a87c3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"40\",\"bottom\":\"33\",\"left\":\"40\",\"isLinked\":false},\"css_classes\":\"col-line-mega\"},\"elements\":[{\"id\":\"480355a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Typography\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"acd6f6b\",\"elType\":\"widget\",\"settings\":{\"menu_item\":[{\"text\":\"Custom Fonts\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/custom-fonts\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6651a5c\",\"ct_icon\":{\"value\":\"material zmdi zmdi-font\",\"library\":\"material\"},\"label\":\"\"},{\"text\":\"Highlights\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/highlights\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-coffee\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ca12570\"},{\"text\":\"Blockquote\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/blockquote\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-right-quotation-mark\",\"library\":\"flaticonv2\"},\"label\":\"\",\"_id\":\"d26e2ad\"},{\"text\":\"Dropcaps\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/dropcaps\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-width\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"ee9bbb6\"},{\"text\":\"Message Box\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/message-box\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"material zmdi zmdi-assignment-alert\",\"library\":\"material\"},\"label\":\"\",\"_id\":\"707a1d7\"},{\"text\":\"Lists\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/lists\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-list\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"19f958e\"},{\"text\":\"Titles\",\"link\":{\"url\":\"http:\\/\\/demo.casethemes.net\\/consultio\\/elements\\/titles\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ct_icon\":{\"value\":\"fas fa-text-height\",\"library\":\"fa-solid\"},\"label\":\"\",\"_id\":\"e355a5d\"}]},\"elements\":[],\"widgetType\":\"ct_menu_item\"}],\"isInner\":false}],\"isInner\":false}]'),(256,5137,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:5:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:4;s:26:\"title_typography_font_size\";i:4;s:18:\"title_space_bottom\";i:4;s:28:\"title_typography_font_weight\";i:4;}}}}s:12:\"ct_menu_item\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:9:\"menu_item\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(257,5333,'_elementor_edit_mode','builder'),(258,5333,'_elementor_template_type','page'),(259,5333,'_elementor_version','2.9.14'),(260,5333,'_wp_page_template','default'),(261,5333,'_elementor_data','[{\"id\":\"599cf920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"f76009b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"724e3afb\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b6ae3cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d39534b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2ff42664\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb33453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true},{\"id\":\"1daeb522\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"761a7070\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer many services to progress!\",\"title_color\":\"#161B39\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"sub_title\":\"Services\",\"sub_title_color\":\"#0795FE\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6c58b2d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting or lipsum.\",\"align\":\"center\",\"text_color\":\"#39385A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4c832d31\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b8fbcf5\",\"elType\":\"widget\",\"settings\":{\"layout\":\"13\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"filter_default_title\":\"All\",\"col_md\":\"4\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53876b40\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#EBEBEB\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-01.png\",\"id\":5223},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"1c3b2508\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"68517d77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/man1.png\",\"id\":5221},\"ct_animate\":\"wow fadeInLeft\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false},{\"id\":\"c3c0b0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"4883486\",\"elType\":\"widget\",\"settings\":{\"title\":\"I have a many funfacts for the best works.\",\"title_color\":\"#161B39\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"sub_title\":\"Fan facts\",\"sub_title_color\":\"#0795FE\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3626a202\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Include a few fun facts about your personal life, like this one. I know all the words to the opening song on Talent Roundup Day. We work with the world\\u2019s leading forest products, paper .<\\/p>\",\"align\":\"left\",\"text_color\":\"#39385A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9456b4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79f81397\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"7af60267\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":122,\"suffix\":\"+\",\"title\":\"Satisfied<br\\/> clients\",\"style\":\"style2\",\"number_typography_typography\":\"custom\",\"number_typography_font_family\":\"Roboto\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Roboto\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"55c56641\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5595db0f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":99,\"suffix\":\"%\",\"title\":\"Success of <br\\/> works\",\"style\":\"style2\",\"number_typography_typography\":\"custom\",\"number_typography_font_family\":\"Roboto\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Roboto\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"4e72bebc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"54c19d7f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"ending_number\":18,\"suffix\":\"+\",\"title\":\"Expert team<br\\/> member\",\"style\":\"style2\",\"number_typography_typography\":\"custom\",\"number_typography_font_family\":\"Roboto\",\"number_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"number_typography_font_weight\":\"700\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Roboto\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"number_space_bottom\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25669f24\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":107,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba6b86\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76e89ea6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a9274a3\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 01\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/client-img3.png\",\"id\":4961},\"_id\":\"87c8380\"},{\"client_name\":\"Client 02\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/client-img2.png\",\"id\":4960},\"_id\":\"fb242b5\"},{\"client_name\":\"Client 03\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/client-img4.png\",\"id\":4962},\"_id\":\"1289464\"},{\"client_name\":\"Client 04\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/client-img1.png\",\"id\":4959},\"_id\":\"c239ad5\"},{\"client_name\":\"Client 05\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/client-img5.png\",\"id\":4963},\"_id\":\"929ec5c\"}],\"style\":\"style4\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"5\",\"autoplay\":\"true\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"22b8f985\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"74\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bb38e88\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true},{\"id\":\"7e0614b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"4902e73a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer many services to progress!\",\"title_color\":\"#161B39\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"sub_title\":\"Feature\",\"sub_title_color\":\"#0795FE\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"2f2b7710\",\"elType\":\"widget\",\"settings\":{\"editor\":\"As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting or lipsum.\",\"align\":\"center\",\"text_color\":\"#39385A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f2d2431\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"585363e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"301f27e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7e4fa361\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/feature-icon1.png\",\"id\":5248},\"title_text\":\"Clean Setup\",\"description_text\":\"Lorem Ipsum is simply dummy text of the printing and its typeseting industry.\",\"style\":\"style9\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"5e51f247\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4da304d8\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/feature-icon2.png\",\"id\":5249},\"title_text\":\"Financial Maintance\",\"description_text\":\"Lorem Ipsum is simply dummy text of the printing and its typeseting industry.\",\"style\":\"style9\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"64873df2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"6bc1d263\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/feature-icon3.png\",\"id\":5252},\"title_text\":\"Tax Management\",\"description_text\":\"Lorem Ipsum is simply dummy text of the printing and its typeseting industry.\",\"style\":\"style9\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"100\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"4bb643a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2e5cec90\",\"elType\":\"widget\",\"settings\":{\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/feature-icon4.png\",\"id\":5253},\"title_text\":\"Customer Experience\",\"description_text\":\"Lorem Ipsum is simply dummy text of the printing and its typeseting industry.\",\"style\":\"style9\",\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"150\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"616db2b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#EBEBEB\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"696f5a4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7ff265ca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6a221491\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.0750000000000028421709430404007434844970703125},\"elements\":[{\"id\":\"73e99694\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are very glad to get client review.\",\"title_color\":\"#161B39\",\"sub_title\":\"Testimonials\",\"sub_title_color\":\"#0795FE\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"53cf4440\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.9249999999999971578290569595992565155029296875},\"elements\":[{\"id\":\"25b8fe31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting.  or lipsum as it is sometimes known, is dummy text used in laying out print, grap or web designs.\",\"align\":\"left\",\"text_color\":\"#39385A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2df64316\",\"elType\":\"widget\",\"settings\":{\"layout\":\"13\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"sub_title\":\"\",\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"As a app web crawler expert, I help to do organizations adjust to the expanding to the significace of internet promoting. placeholder text.\",\"_id\":\"5253837\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/ud-testimonial-02.jpg\",\"id\":5266},\"sub_title\":\"\",\"title\":\"Alan Smith\",\"position\":\"Asistant Manager\",\"description\":\"As a app web crawler expert, I help to do organizations adjust to the expanding to the significace of internet promoting. placeholder text.\",\"_id\":\"e5d22c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/ud-testimonial-03.jpg\",\"id\":5267},\"sub_title\":\"\",\"title\":\"Jewel Smith\",\"position\":\"Web Design\",\"description\":\"As a app web crawler expert, I help to do organizations adjust to the expanding to the significace of internet promoting. placeholder text.\",\"_id\":\"6e4a934\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/ud-testimonial-01.jpg\",\"id\":5265},\"sub_title\":\"\",\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"As a app web crawler expert, I help to do organizations adjust to the expanding to the significace of internet promoting. placeholder text.\",\"_id\":\"dc12948\"}],\"dots\":\"true\",\"infinite\":\"true\",\"style_l13\":\"style2\",\"autoplay\":\"true\",\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62a733e8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"271af822\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"40516bef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35c7bba5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true},{\"id\":\"772523e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"4eac25e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team will help you.\",\"title_color\":\"#161B39\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"sub_title\":\"Team\",\"sub_title_color\":\"#0795FE\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4e2e288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting or lipsum.\",\"align\":\"center\",\"text_color\":\"#39385A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4d6e42a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"132d681f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"5\",\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/u-team-01.jpg\",\"id\":5281},\"title\":\"Laito French\",\"desc\":\"\",\"position\":\"Founder & CEO\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"cb9862b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/u-team-02.jpg\",\"id\":5282},\"title\":\"Adam Ivan\",\"desc\":\"\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"6e300c9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/u-team-03.jpg\",\"id\":5283},\"title\":\"Rebecca Leo\",\"desc\":\"\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"8b08345\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Donald John\",\"desc\":\"\",\"position\":\"Executive Manager\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"6d4a27d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/u-team-04.jpg\",\"id\":5284},\"title\":\"Iven Rocky\",\"desc\":\"\",\"position\":\"Web Developer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fab fa-facebook-f\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fab fa-dribbble\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"3991bad\"}],\"col_lg\":\"4\",\"col_xl\":\"4\",\"arrows\":\"true\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"270\",\"height\":\"280\"},\"style_l5\":\"style2\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"295fb1b6\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#0C0A30\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40fdcd22\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6839d15b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68127a2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53654fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch for any kind of help and informations\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Get in touch\",\"sub_title_color\":\"#0795FE\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"308f9ab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ceb7842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#C4C4C4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"55508907\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e3fc84\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.8179999999999978399500832892954349517822265625,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ec2fbe\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Our head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"687f667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"6ab18539\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail us for information\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3797b27e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.1820000000000021600499167107045650482177734375,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"319d0e1f\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style3\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28905f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"157c7dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627816f4\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11678ca6\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c1d628\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6880bc69\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23a58cf9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true},{\"id\":\"775c4fdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":80},\"elements\":[{\"id\":\"4019d0d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Something from our latest blog\",\"title_color\":\"#161B39\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"sub_title\":\"Blog\",\"sub_title_color\":\"#0795FE\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6dea779e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting or lipsum.\",\"align\":\"center\",\"text_color\":\"#39385A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"46c8e167\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"45de385e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"8\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"370\",\"height\":\"270\"},\"col_md\":\"2\",\"show_button\":\"\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"797be9a3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#F6EBE6\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/08\\/bg-section-02.png\",\"id\":5322},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"577bf6b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2b9afa63\",\"elType\":\"widget\",\"settings\":{\"style\":\"style6\",\"button_label\":\"Subscrib now\",\"title\":\"Like our service? Subscribe us\",\"desc\":\"As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting.\"},\"elements\":[],\"widgetType\":\"ct_newsletter\"}],\"isInner\":false}],\"isInner\":false}]'),(262,5333,'_elementor_controls_usage','a:17:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:36;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:35;s:19:\"_inline_size_tablet\";i:16;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:15:\"stretch_section\";i:7;s:6:\"layout\";i:2;s:3:\"gap\";i:19;s:16:\"content_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:17;s:14:\"padding_tablet\";i:3;s:6:\"margin\";i:3;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:3;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:3;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:3:{s:5:\"title\";i:7;s:11:\"title_color\";i:7;s:18:\"title_space_bottom\";i:5;}s:17:\"sub_title_section\";a:7:{s:9:\"sub_title\";i:7;s:15:\"sub_title_color\";i:7;s:31:\"sub_title_typography_typography\";i:7;s:30:\"sub_title_typography_font_size\";i:7;s:32:\"sub_title_typography_font_weight\";i:7;s:22:\"sub_title_space_bottom\";i:7;s:14:\"sub_title_line\";i:7;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:7;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:15:\"_padding_tablet\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:6;s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:22:\"typography_line_height\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:6;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:2;s:15:\"_padding_mobile\";i:6;s:14:\"_margin_tablet\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:12:\"grid_section\";a:2:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:5:\"image\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:7:\"content\";a:1:{s:15:\"section_counter\";a:4:{s:13:\"ending_number\";i:3;s:6:\"suffix\";i:3;s:5:\"title\";i:3;s:5:\"style\";i:3;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:5:{s:28:\"number_typography_typography\";i:3;s:29:\"number_typography_font_family\";i:3;s:27:\"number_typography_font_size\";i:3;s:29:\"number_typography_font_weight\";i:3;s:19:\"number_space_bottom\";i:3;}s:13:\"section_title\";a:6:{s:27:\"typography_title_typography\";i:3;s:28:\"typography_title_font_family\";i:3;s:26:\"typography_title_font_size\";i:3;s:28:\"typography_title_font_weight\";i:3;s:28:\"typography_title_line_height\";i:3;s:18:\"title_space_bottom\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:1;s:12:\"space_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:7:{s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:8:\"autoplay\";i:1;s:8:\"infinite\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_content\";a:5:{s:9:\"icon_type\";i:4;s:10:\"icon_image\";i:4;s:10:\"title_text\";i:7;s:16:\"description_text\";i:7;s:13:\"selected_icon\";i:3;}s:13:\"section_style\";a:3:{s:5:\"style\";i:4;s:10:\"ct_animate\";i:7;s:16:\"ct_animate_delay\";i:3;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:2:{s:25:\"section_carousel_settings\";a:4:{s:4:\"dots\";i:1;s:8:\"infinite\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_sm\";i:1;}s:13:\"style_section\";a:1:{s:9:\"style_l13\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:3:{s:4:\"team\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:5:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:6:\"arrows\";i:1;s:8:\"style_l5\";i:1;s:8:\"infinite\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:14:\"source_section\";a:2:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}s:25:\"section_carousel_settings\";a:1:{s:6:\"col_md\";i:1;}s:15:\"display_section\";a:1:{s:11:\"show_button\";i:1;}}}}s:13:\"ct_newsletter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:14:\"source_section\";a:4:{s:5:\"style\";i:1;s:12:\"button_label\";i:1;s:5:\"title\";i:1;s:4:\"desc\";i:1;}}}}}'),(263,5543,'_elementor_edit_mode','builder'),(264,5543,'_elementor_template_type','page'),(265,5543,'_elementor_version','3.0.11'),(266,5543,'_wp_page_template','default'),(267,5543,'_elementor_data','[{\"id\":\"1e0db1c2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5cb81763\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2d92fbd6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"2ddb3cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1517ba17\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15980c0b\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4cb0ac96\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"6fccec28\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"367ce954\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"icon_item\":[]},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"369a4815\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52a22eb5\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"19cede0c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"319a5cd3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"278ec0b4\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"_id\":\"6426fb7\"},{\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"_id\":\"65f3b3f\"},{\"content\":\"support@consultio.com\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"4f589955\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2d67fba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49cbc4b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"28d390e\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46f1dc28\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38d42b1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"296793bb\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(268,5543,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(269,20,'_wp_page_template','default'),(270,20,'_elementor_edit_mode','builder'),(271,20,'_elementor_template_type','wp-post'),(272,20,'_elementor_version','3.1.4'),(273,20,'post_views_count','0'),(274,20,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#680202\"},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fd8a94\",\"elType\":\"widget\",\"settings\":{\"title\":\"About:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p>\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8389627\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-updated-1\",\"style\":\"style-light1\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"info@dealersofthemacabre.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"b7476db\"}],\"content_color\":\"#DDE8E8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5e573de4\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#BB0000\"},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#01080D\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>DealersoftheMacabre.com \\u00a9 All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#C2D5E7\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_family\":\"Poppins\",\"link_typography_typography\":\"custom\",\"link_typography_font_weight\":\"700\",\"link_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4352,5797,'_wp_page_template','default'),(4353,5797,'_elementor_edit_mode','builder'),(4354,5797,'_elementor_template_type','wp-post'),(4355,5797,'_elementor_version','3.1.4'),(4356,5797,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#920D0D\"},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fd8a94\",\"elType\":\"widget\",\"settings\":{\"title\":\"About:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p>\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8389627\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-updated-1\",\"style\":\"style-light1\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"info@dealersofthemacabre.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"b7476db\"}],\"content_color\":\"#DDE8E8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5e573de4\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FF0040\"},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#01080D\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>DealersoftheMacabre.com \\u00a9 All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#C2D5E7\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_family\":\"Poppins\",\"link_typography_typography\":\"custom\",\"link_typography_font_weight\":\"700\",\"link_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4346,5796,'_elementor_edit_mode','builder'),(4347,5796,'_elementor_template_type','wp-post'),(4348,5796,'_elementor_version','3.0.11'),(4349,5796,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#920D0D\"},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fd8a94\",\"elType\":\"widget\",\"settings\":{\"title\":\"About:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p>\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8389627\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-updated-1\",\"style\":\"style-light1\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"info@dealersofthemacabre.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"b7476db\"}],\"content_color\":\"#DDE8E8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5e573de4\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FF0040\"},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#01080D\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>DealersoftheMacabre.com \\u00a9 All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#C2D5E7\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_family\":\"Poppins\",\"link_typography_typography\":\"custom\",\"link_typography_font_weight\":\"700\",\"link_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(275,20,'slide_template',''),(276,20,'rs_page_bg_color',''),(4339,5795,'_wp_page_template','default'),(4340,5795,'_elementor_edit_mode','builder'),(4341,5795,'_elementor_template_type','wp-post'),(4342,5795,'_elementor_version','3.0.11'),(4343,5795,'_elementor_data','[{\"id\":\"af9be59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"d1c999c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"1576147\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/10\\/logo-footer.png\",\"id\":5365},\"image_align\":\"center\",\"image_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-85\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#0D2252\"},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fd8a94\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are <b>Consultio!<\\/b>\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We work with a passion of taking challenges and creating new ones in advertising sector.\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"698b742\",\"elType\":\"widget\",\"settings\":{\"title\":\"Open Hours: \",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"title_typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"12558334\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Mon - Sat: 8 am - 5 pm,<br\\/>\\nSunday: CLOSED\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7b23233\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Subscribe our newsletter to get our latest update & news\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"ca7e4ea\",\"elType\":\"widget\",\"settings\":{\"style\":\"style4\",\"button_bg_color\":\"#FF0040\",\"input_color\":\"#FFFFFF\",\"input_bg_color\":\"#263964\"},\"elements\":[],\"widgetType\":\"ct_mailchimp_form\"},{\"id\":\"5e573de4\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d40f6fc\",\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5da1c22\",\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FF0040\"},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Official info:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"30 Commercial Road<br\\/> Fratton, Australia\",\"ct_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"d6a54b0\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"1-888-452-1505\",\"ct_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"44a1d82\",\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"}},{\"content\":\"envato@gmail.com<br\\/>\\ninfo@mail.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"b7476db\"}],\"content_color\":\"#DDE8E8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"}],\"isInner\":false},{\"id\":\"2317946e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66f42b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Instagram\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"cb91862\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"[instagram-feed]\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#01080D\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<span class=\\\"ct-year\\\">2019<\\/span> \\u00a9 All rights reserved by <a href=\\\"https:\\/\\/themeforest.net\\/user\\/case-themes\\/portfolio\\\" target=\\\"_blank\\\" rel=\\\"nofollow noopener\\\">CaseThemes<\\/a>\",\"align\":\"center\",\"text_color\":\"#C2D5E7\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_family\":\"Poppins\",\"link_typography_typography\":\"custom\",\"link_typography_font_weight\":\"700\",\"link_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(278,5544,'_menu_item_type','custom'),(279,5544,'_menu_item_menu_item_parent','0'),(280,5544,'_menu_item_object_id','5544'),(281,5544,'_menu_item_object','custom'),(282,5544,'_menu_item_target',''),(283,5544,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(284,5544,'_menu_item_xfn',''),(285,5544,'_menu_item_url','#'),(286,5544,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(287,5544,'_menu_item_ct_icon',''),(288,5544,'_menu_item_ct_megaprofile','0'),(289,5544,'_menu_item_ct_onepage','no-one-page'),(290,5544,'_menu_item_ct_onepage_offset',''),(291,4680,'_mc4wp_settings','a:9:{s:5:\"lists\";a:1:{i:0;s:10:\"9bc6c4cc2e\";}s:15:\"required_fields\";s:5:\"EMAIL\";s:12:\"double_optin\";s:1:\"1\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";s:15:\"subscriber_tags\";s:0:\"\";s:18:\"hide_after_success\";s:1:\"0\";s:8:\"redirect\";s:0:\"\";s:3:\"css\";s:1:\"0\";}'),(292,4680,'text_subscribed','Thank you, your sign-up request was successful! Please check your email inbox to confirm.'),(293,4680,'text_invalid_email','Please provide a valid email address.'),(294,4680,'text_required_field_missing','Please fill in the required fields.'),(295,4680,'text_already_subscribed','Given email address is already subscribed, thank you!'),(296,4680,'text_error','Oops. Something went wrong. Please try again later.'),(297,4680,'text_unsubscribed','You were successfully unsubscribed.'),(298,4680,'text_not_subscribed','Given email address is not subscribed.'),(299,4680,'text_no_lists_selected','Please select at least one list.'),(300,4680,'text_updated','Thank you, your records have been updated!'),(301,4680,'_wp_old_date','2020-05-08'),(4591,5837,'_wp_page_template','default'),(4592,5837,'_elementor_edit_mode','builder'),(4593,5837,'_elementor_template_type','wp-page'),(4594,5837,'_elementor_version','3.1.4'),(4595,5837,'_elementor_data','[{\"id\":\"53fc2b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"30e5f8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"809e82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"fbdc553\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4596,5838,'_wp_page_template','default'),(4597,5838,'_elementor_edit_mode','builder'),(4598,5838,'_elementor_template_type','wp-page'),(4599,5838,'_elementor_version','3.1.4'),(4600,5838,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31e096f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18cac2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"427d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c290b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c89ca6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"86c4ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"38a837c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"51c5de3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b743c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4521,5823,'_elementor_css','a:6:{s:4:\"time\";i:1620518206;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:2;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:10:\"flaticonv2\";i:6;s:8:\"fa-solid\";i:7;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4740,9,'_elementor_controls_usage','a:7:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:16;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:6:\"layout\";i:2;s:3:\"gap\";i:5;s:15:\"stretch_section\";i:8;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:6;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:11:\"title_color\";i:6;s:10:\"text_align\";i:5;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:6;s:15:\"sub_title_style\";i:6;s:31:\"sub_title_typography_typography\";i:6;s:30:\"sub_title_typography_font_size\";i:6;s:15:\"sub_title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:5;s:7:\"link_to\";i:4;s:4:\"link\";i:4;s:5:\"align\";i:4;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:4;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:4;s:10:\"text_color\";i:4;s:5:\"align\";i:3;s:26:\"link_typography_typography\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:3;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:2:{s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:4:\"dots\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:13:\"style_section\";a:2:{s:9:\"style_l12\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(4515,5822,'_elementor_css','a:6:{s:4:\"time\";i:1620518206;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:2;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:10:\"flaticonv2\";i:6;s:8:\"fa-solid\";i:7;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4516,5823,'_wp_page_template','default'),(4517,5823,'_elementor_edit_mode','builder'),(4518,5823,'_elementor_template_type','wp-page'),(4519,5823,'_elementor_version','2.9.7'),(4520,5823,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"About us\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"398fa9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"311bc37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ef13cfd\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"59\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a class=\\\"link-preset2\\\" href=\\\"#\\\">any question<\\/a> 540-325-1523<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78f3a28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e20b32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/signature-02.png\",\"id\":2319},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false},{\"id\":\"1bb8bef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40e6861c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/banner-01.png\",\"id\":2306},\"title\":\"24 Years of Experience\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38f7332b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dba3a7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"735a4111\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44317976\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e36d3ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4edf15d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.87700000000000244426701101474463939666748046875,\"margin\":{\"unit\":\"px\",\"top\":\"030\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54c181e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The main difference between Statistic and Statistics is that the Statistic is a single measure of some attribute of a sample and Statistics is a study of the collection.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21927eaa\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-edit\",\"library\":\"flaticonv2\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-partnership.png\",\"id\":3595}},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-gear\",\"library\":\"flaticonv2\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-analysis.png\",\"id\":3590},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-objective\",\"library\":\"flaticonv2\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-chart-star.png\",\"id\":3592},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-creative\",\"library\":\"flaticonv2\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-money-bag.png\",\"id\":3594},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-idea.png\",\"id\":3593},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-layers\",\"library\":\"flaticonv2\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-business.png\",\"id\":3591},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c752131\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"b425f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ce65c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7af3a6b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"95f59e2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"9211325\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58fe444\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"03068b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"202a22e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7044b92\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/about-section-01.jpg\",\"id\":3628},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43e18f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"_inline_size_tablet\":90},\"elements\":[{\"id\":\"b570126\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Our Value\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"91aeee6\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Our Mission\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">Our professionals provide a range of accounting and assurance services of the highest standards.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"8303bab\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Payroll Service\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.<\\/div>\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"bdab1d1\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"tab_type\":\"vertical\",\"title_color_type\":\"#FFFFFF\",\"content_color_type\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false},{\"id\":\"c7ad8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.96000000000000085265128291212022304534912109375,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"78e91ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"81\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"918186f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1ab16bbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to\\nassemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"8c051a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"d62d9b3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a676f2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"d088f8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38dd266\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51a18258\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca2bbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f546273\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#F0F0F1\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"168b53c2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4505,3491,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:10:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:18:\"title_space_bottom\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:19:\"_inline_size_tablet\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(4506,3491,'_elementor_css','a:6:{s:4:\"time\";i:1620518154;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4507,3495,'_elementor_css','a:6:{s:4:\"time\";i:1620518195;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4509,3493,'_edit_lock','1620520366:1'),(4436,5811,'_elementor_css','a:6:{s:4:\"time\";i:1620517812;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"flaticonv2\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4488,5818,'_elementor_css','a:6:{s:4:\"time\";i:1620517950;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4490,5819,'_wp_page_template','default'),(4491,5819,'_elementor_edit_mode','builder'),(4492,5819,'_elementor_template_type','wp-page'),(4493,5819,'_elementor_version','3.1.4'),(4494,5819,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae56fb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"Buy Your Copy\",\"link\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/about-the-book\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4495,5820,'_wp_page_template','default'),(4496,5820,'_elementor_edit_mode','builder'),(4497,5820,'_elementor_template_type','wp-page'),(4498,5820,'_elementor_version','3.1.4'),(4499,5820,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae56fb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"Buy Your Copy\",\"link\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/about-the-book\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4500,5821,'_wp_page_template','default'),(4501,5821,'_elementor_edit_mode','builder'),(4502,5821,'_elementor_template_type','wp-page'),(4503,5821,'_elementor_version','3.1.4'),(4430,5810,'_elementor_css','a:6:{s:4:\"time\";i:1620517812;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"flaticonv2\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4431,5811,'_wp_page_template','default'),(4432,5811,'_elementor_edit_mode','builder'),(4433,5811,'_elementor_template_type','wp-page'),(4434,5811,'_elementor_version','2.9.7'),(4435,5811,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting is a law firm specialising in corporate finance work\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6638bf3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"36029746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"721a687f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work<br\\/> Development\",\"percentage_value\":80,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"2500a52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"407fce4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Plan<br\\/> Fulfilled\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"63dd35a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"50076466\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX<br\\/> Desigining\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/h4-about1.png\",\"id\":2725},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"271a828\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"216aa41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd79acf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"284946a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e424e89\",\"elType\":\"widget\",\"settings\":{\"title\":\"We deals with many services to take extra care of your problem solutions.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Services\",\"sub_title_style\":\"style2\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"ebf2f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.87700000000000244426701101474463939666748046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e183e09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Business services is a general term that describes work that supports a business but does not produce a tangible commodity. Information technology is important.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"654682a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-edit\",\"library\":\"flaticonv2\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-partnership.png\",\"id\":3595}},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-gear\",\"library\":\"flaticonv2\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-analysis.png\",\"id\":3590},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-objective\",\"library\":\"flaticonv2\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-chart-star.png\",\"id\":3592},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-creative\",\"library\":\"flaticonv2\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-money-bag.png\",\"id\":3594},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-idea.png\",\"id\":3593},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-layers\",\"library\":\"flaticonv2\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-business.png\",\"id\":3591},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3b2339\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed81794\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"27093372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_color\":\"#ffffff\",\"sub_title\":\"Funfact\",\"sub_title_color\":\"#FFFFFF\",\"sub_title_style\":\"style2\",\"sub_title_space_top\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"309772db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60671754\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"3c14ed29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"196cdac9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3374a3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"3acc5d5a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"1f51f75f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5489227e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"54cf5f11\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"32e87dd0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41b62b34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-01.png\",\"id\":2056},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"5a7cd766\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"353bac17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30b6a483\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e61afcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"139f6854\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cdda213\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73f8dd0c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"4bedbf5\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\",\"_id\":\"1d1720d\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\\nthem.\",\"_id\":\"b234799\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b2dfe23\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-author-01.jpg\",\"id\":2170},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\\nthem.\",\"_id\":\"1ed2282\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-author-02.jpg\",\"id\":2171},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\",\"_id\":\"9ebe622\",\"sub_title\":\"\"}],\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"true\",\"col_sm\":\"1\",\"col_md\":\"2\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d76413c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f88cefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"397ee275\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(380,5562,'_elementor_edit_mode','builder'),(381,5562,'_elementor_template_type','page'),(382,5562,'_elementor_version','3.0.11'),(383,5562,'_wp_page_template','default'),(384,5562,'_elementor_data','[{\"id\":\"7fa553b4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4b2c054b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48847dd6\",\"elType\":\"widget\",\"settings\":{\"menu\":\"menu-courses\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"7575647c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"15ea87ad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3cabe49d\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"_id\":\"6426fb7\"},{\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"_id\":\"65f3b3f\"},{\"content\":\"support@consultio.com\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\",\"content_color\":\"#313E5D\",\"content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5a94280d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5cfbf55d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Downloads\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6147eb63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6799354d\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Visa Application Form\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}},{\"title\":\"Visa Application Form\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false},{\"id\":\"5b6e9921\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5285f84d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"img_size\":\"980x500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_image\"},{\"id\":\"10aef940\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sponsoring and managing work visas parts now becoming results in the experience with future guranteed.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6a466b57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"504d18f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"508a6397\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false},\"description_color\":\"#313E5D\"},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"62baa3c8\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"},{\"id\":5534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/ud-blog1.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"1c5f8bb0\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4399f6f4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4a05cfa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(385,5562,'_elementor_controls_usage','a:12:{s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:3:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:4;s:5:\"align\";i:3;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:8:\"ct_image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:5:\"image\";i:1;s:8:\"img_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}s:8:\"settings\";a:1:{s:13:\"style_section\";a:1:{s:17:\"description_color\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}}'),(386,5582,'_elementor_edit_mode','builder'),(387,5582,'_elementor_template_type','page'),(388,5582,'_elementor_version','3.0.11'),(389,5582,'_wp_page_template','default'),(390,5582,'_elementor_data','[{\"id\":\"18563ec2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"5bcc2810\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2e60dca9\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c16ac74\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"259b90f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6d3db735\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"671f491e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3c259d69\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Get Settled\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-handshake\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"dc865b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"466e1391\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Learn English\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-work\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"3dc2775f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"241ddeaf\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Find Work\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-fancybox-01.jpg\",\"id\":5377},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-achievement\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"100\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"483c4436\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"17f6c4de\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Creativity\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-05.jpg\",\"id\":1556},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-idea\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"150\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e340637\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"63d3e3fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"79a1e421\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/banner-01.jpg\",\"id\":5389},\"title\":\"Golden years we\\u2019ve passed!\",\"layout\":\"3\",\"number\":\"15\",\"counter_icon\":{\"value\":\"flaticonv3 flaticonv3-group\",\"library\":\"flaticonv3\"},\"counter_number\":\"5000\",\"counter_title\":\"Satisfied Clients\",\"counter_suffix\":\"+\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"7045ee74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48a6998a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7abcbb1a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"899ff6d\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1386e68\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d95086c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"255e4ce5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"272668bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"7020b046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"3edc9e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"35e078\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"18c3e51\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7bfb6206\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"79b2b58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6f4c78bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c4009c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36c380a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1659512b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53f408ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"dcc6e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"b507f2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3dfed9a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5fefbf66\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c361c3d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c0212b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"20b40a8b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"14e73fd3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"586fda48\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"653c6c46\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7c1294eb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"ceed644\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3a54d5ce\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c39c806\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3cce7466\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b9cee9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"753c60ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"3cc9a80b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"48b78764\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"29956a26\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ca87081\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46c169cd\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"58ca5d54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48619f53\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"48c80b6d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"34cf167c\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71ab7904\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cfbb4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"188cf86d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"22d713b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"77ce4897\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"48c7e286\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"2d772d6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"4d794064\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25b55e49\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"681740a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6a013205\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"20f14c92\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f4a974e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"6c867ce2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"5c3e3cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3935d816\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"fb3c122\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(391,5582,'_elementor_controls_usage','a:18:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:34;s:19:\"_inline_size_tablet\";i:17;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:6;s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:6:\"layout\";i:1;s:3:\"gap\";i:18;s:15:\"stretch_section\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:11;s:7:\"z_index\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:5;s:19:\"background_position\";i:5;s:17:\"background_repeat\";i:5;s:15:\"background_size\";i:5;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:5:{s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:8:\"btn_text\";i:4;s:9:\"box_image\";i:4;s:13:\"selected_icon\";i:4;}s:13:\"section_style\";a:2:{s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:7:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:6:\"number\";i:1;s:12:\"counter_icon\";i:1;s:14:\"counter_number\";i:1;s:13:\"counter_title\";i:1;s:14:\"counter_suffix\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:6:{s:5:\"title\";i:7;s:11:\"title_color\";i:7;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:5;s:14:\"_margin_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:26:\"link_typography_typography\";i:1;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:1;}s:15:\"_section_border\";a:6:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:3:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"settings\";a:1:{s:13:\"style_section\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:6:\"source\";i:1;s:5:\"limit\";i:1;s:9:\"style_l10\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:5:\"title\";i:1;s:8:\"btn_text\";i:1;s:6:\"layout\";i:1;s:9:\"sub_title\";i:1;s:8:\"btn_link\";i:1;s:5:\"image\";i:1;s:9:\"btn_style\";i:1;}}}}s:8:\"ct_point\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:9:\"item_list\";i:1;s:8:\"bg_image\";i:1;}}}}s:19:\"ct_courses_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"col_md\";i:1;s:4:\"dots\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:17:\"ct_fancy_box_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:13:\"ct_phone_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:4:{s:11:\"label_phone\";i:1;s:12:\"phone_number\";i:1;s:11:\"label_email\";i:1;s:13:\"email_address\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:2:{s:25:\"section_carousel_settings\";a:2:{s:6:\"col_md\";i:1;s:4:\"dots\";i:1;}s:13:\"style_section\";a:1:{s:9:\"style_l12\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_xs\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:8:\"style_l7\";i:1;}s:25:\"section_carousel_settings\";a:7:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"infinite\";i:1;}}}}}'),(392,5583,'_menu_item_type','custom'),(393,5583,'_menu_item_menu_item_parent','5544'),(394,5583,'_menu_item_object_id','5583'),(395,5583,'_menu_item_object','custom'),(396,5583,'_menu_item_target',''),(397,5583,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(398,5583,'_menu_item_xfn',''),(399,5583,'_menu_item_url','https://demo.casethemes.net/consultio-immigration/404-page/'),(400,5583,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(401,5583,'_menu_item_ct_icon',''),(402,5584,'_menu_item_type','custom'),(403,5584,'_menu_item_menu_item_parent','0'),(404,5584,'_menu_item_object_id','5584'),(405,5584,'_menu_item_object','custom'),(406,5584,'_menu_item_target',''),(407,5584,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(408,5584,'_menu_item_xfn',''),(409,5584,'_menu_item_url','#'),(410,5584,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(411,5584,'_menu_item_ct_icon',''),(412,5584,'_menu_item_ct_megaprofile','0'),(413,5584,'_menu_item_ct_onepage','no-one-page'),(414,5584,'_menu_item_ct_onepage_offset',''),(415,5585,'_menu_item_type','custom'),(416,5585,'_menu_item_menu_item_parent','5584'),(417,5585,'_menu_item_object_id','5585'),(418,5585,'_menu_item_object','custom'),(419,5585,'_menu_item_target',''),(420,5585,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(421,5585,'_menu_item_xfn',''),(422,5585,'_menu_item_url','https://demo.casethemes.net/consultio-immigration/404-page/'),(423,5585,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(424,5585,'_menu_item_ct_icon',''),(425,5586,'_menu_item_type','custom'),(426,5586,'_menu_item_menu_item_parent','0'),(427,5586,'_menu_item_object_id','5586'),(428,5586,'_menu_item_object','custom'),(429,5586,'_menu_item_target',''),(430,5586,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(431,5586,'_menu_item_xfn',''),(432,5586,'_menu_item_url','#'),(433,5586,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(434,5586,'_menu_item_ct_icon',''),(435,5586,'_menu_item_ct_megaprofile','4587'),(436,5586,'_menu_item_ct_onepage','no-one-page'),(437,5586,'_menu_item_ct_onepage_offset',''),(438,5587,'_menu_item_type','custom'),(439,5587,'_menu_item_menu_item_parent','0'),(440,5587,'_menu_item_object_id','5587'),(441,5587,'_menu_item_object','custom'),(442,5587,'_menu_item_target',''),(443,5587,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(444,5587,'_menu_item_xfn',''),(445,5587,'_menu_item_url','#'),(446,5587,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(447,5587,'_menu_item_ct_icon',''),(448,5587,'_menu_item_ct_megaprofile','4587'),(449,5587,'_menu_item_ct_onepage','no-one-page'),(450,5587,'_menu_item_ct_onepage_offset',''),(451,5588,'_menu_item_type','custom'),(452,5588,'_menu_item_menu_item_parent','0'),(453,5588,'_menu_item_object_id','5588'),(454,5588,'_menu_item_object','custom'),(455,5588,'_menu_item_target',''),(456,5588,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(457,5588,'_menu_item_xfn',''),(458,5588,'_menu_item_url','#'),(459,5588,'_menu_item_ct_icon',''),(460,5589,'_menu_item_type','custom'),(461,5589,'_menu_item_menu_item_parent','5588'),(462,5589,'_menu_item_object_id','5589'),(463,5589,'_menu_item_object','custom'),(464,5589,'_menu_item_target',''),(465,5589,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(466,5589,'_menu_item_xfn',''),(467,5589,'_menu_item_url','#'),(468,5589,'_menu_item_ct_icon',''),(469,5590,'_menu_item_type','custom'),(470,5590,'_menu_item_menu_item_parent','5588'),(471,5590,'_menu_item_object_id','5590'),(472,5590,'_menu_item_object','custom'),(473,5590,'_menu_item_target',''),(474,5590,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(475,5590,'_menu_item_xfn',''),(476,5590,'_menu_item_url','#'),(477,5590,'_menu_item_ct_icon',''),(478,5591,'_menu_item_type','custom'),(479,5591,'_menu_item_menu_item_parent','5588'),(480,5591,'_menu_item_object_id','5591'),(481,5591,'_menu_item_object','custom'),(482,5591,'_menu_item_target',''),(483,5591,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(484,5591,'_menu_item_xfn',''),(485,5591,'_menu_item_url','#'),(486,5591,'_menu_item_ct_icon',''),(487,5592,'_menu_item_type','custom'),(488,5592,'_menu_item_menu_item_parent','0'),(489,5592,'_menu_item_object_id','5592'),(490,5592,'_menu_item_object','custom'),(491,5592,'_menu_item_target',''),(492,5592,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(493,5592,'_menu_item_xfn',''),(494,5592,'_menu_item_url','#'),(495,5592,'_menu_item_ct_megaprofile','5137'),(496,5592,'_menu_item_ct_icon',''),(497,5592,'_menu_item_ct_onepage','no-one-page'),(498,5592,'_menu_item_ct_onepage_offset',''),(499,5593,'_menu_item_type','custom'),(500,5593,'_menu_item_menu_item_parent','0'),(501,5593,'_menu_item_object_id','5593'),(502,5593,'_menu_item_object','custom'),(503,5593,'_menu_item_target',''),(504,5593,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(505,5593,'_menu_item_xfn',''),(506,5593,'_menu_item_url','#section-home'),(507,5593,'_menu_item_ct_megaprofile','4587'),(508,5593,'_menu_item_ct_icon',''),(509,5593,'_menu_item_ct_onepage','is-one-page'),(510,5593,'_menu_item_ct_onepage_offset',''),(511,5594,'_menu_item_type','custom'),(512,5594,'_menu_item_menu_item_parent','0'),(513,5594,'_menu_item_object_id','5594'),(514,5594,'_menu_item_object','custom'),(515,5594,'_menu_item_target',''),(516,5594,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(517,5594,'_menu_item_xfn',''),(518,5594,'_menu_item_url','#section-about'),(519,5594,'_menu_item_ct_megaprofile','0'),(520,5594,'_menu_item_ct_icon',''),(521,5594,'_menu_item_ct_onepage','is-one-page'),(522,5594,'_menu_item_ct_onepage_offset','80'),(523,5595,'_menu_item_type','custom'),(524,5595,'_menu_item_menu_item_parent','0'),(525,5595,'_menu_item_object_id','5595'),(526,5595,'_menu_item_object','custom'),(527,5595,'_menu_item_target',''),(528,5595,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(529,5595,'_menu_item_xfn',''),(530,5595,'_menu_item_url','#section-services'),(531,5595,'_menu_item_ct_megaprofile','0'),(532,5595,'_menu_item_ct_icon',''),(533,5595,'_menu_item_ct_onepage','is-one-page'),(534,5595,'_menu_item_ct_onepage_offset','80'),(535,5596,'_menu_item_type','custom'),(536,5596,'_menu_item_menu_item_parent','0'),(537,5596,'_menu_item_object_id','5596'),(538,5596,'_menu_item_object','custom'),(539,5596,'_menu_item_target',''),(540,5596,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(541,5596,'_menu_item_xfn',''),(542,5596,'_menu_item_url','#section-courses'),(543,5596,'_menu_item_ct_megaprofile','0'),(544,5596,'_menu_item_ct_icon',''),(545,5596,'_menu_item_ct_onepage','is-one-page'),(546,5596,'_menu_item_ct_onepage_offset','80'),(547,5597,'_menu_item_type','custom'),(548,5597,'_menu_item_menu_item_parent','0'),(549,5597,'_menu_item_object_id','5597'),(550,5597,'_menu_item_object','custom'),(551,5597,'_menu_item_target',''),(552,5597,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(553,5597,'_menu_item_xfn',''),(554,5597,'_menu_item_url','#section-testimonials'),(555,5597,'_menu_item_ct_megaprofile','0'),(556,5597,'_menu_item_ct_icon',''),(557,5597,'_menu_item_ct_onepage','is-one-page'),(558,5597,'_menu_item_ct_onepage_offset','80'),(559,5598,'_menu_item_type','custom'),(560,5598,'_menu_item_menu_item_parent','0'),(561,5598,'_menu_item_object_id','5598'),(562,5598,'_menu_item_object','custom'),(563,5598,'_menu_item_target',''),(564,5598,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(565,5598,'_menu_item_xfn',''),(566,5598,'_menu_item_url','#section-blog'),(567,5598,'_menu_item_ct_megaprofile','0'),(568,5598,'_menu_item_ct_icon',''),(569,5598,'_menu_item_ct_onepage','is-one-page'),(570,5598,'_menu_item_ct_onepage_offset','80'),(571,5599,'_menu_item_type','custom'),(572,5599,'_menu_item_menu_item_parent','0'),(573,5599,'_menu_item_object_id','5599'),(574,5599,'_menu_item_object','custom'),(575,5599,'_menu_item_target',''),(576,5599,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(577,5599,'_menu_item_xfn',''),(578,5599,'_menu_item_url','#section-contact'),(579,5599,'_menu_item_ct_megaprofile','0'),(580,5599,'_menu_item_ct_icon',''),(581,5599,'_menu_item_ct_onepage','is-one-page'),(582,5599,'_menu_item_ct_onepage_offset','80'),(583,9,'_elementor_edit_mode','builder'),(584,9,'_elementor_template_type','wp-page'),(585,9,'_elementor_version','3.1.4'),(586,9,'_wp_page_template','default'),(587,9,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342bfda\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a536ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ed8d42b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d3f64eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"33010b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2af63e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7ac11e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a51d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"aa04551\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4000,5737,'_elementor_edit_mode','builder'),(588,9,'custom_header','1'),(589,9,'custom_pagetitle','hide'),(590,9,'custom_title',''),(591,9,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(592,9,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(593,9,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(594,9,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(595,9,'show_sidebar_page',''),(596,9,'sidebar_page_pos','right'),(597,9,'custom_footer','0'),(598,9,'footer_layout_custom','20'),(599,9,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(600,9,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(602,9,'header_layout','3'),(603,9,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(604,9,'page_h_phone',''),(605,9,'page_h_time',''),(606,9,'loading_page','themeoption'),(607,9,'loading_type','style1'),(608,9,'page_back_totop','themeoption'),(4235,5783,'_wp_attached_file','2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM.png'),(610,9,'p_page_title_color',''),(611,9,'ptitle_overlay','themeoption'),(612,9,'ptitle_breadcrumb_page','themeoption'),(613,9,'ptitle_breadcrumb_color',''),(614,9,'h_custom_menu',''),(615,9,'h_custom_menu_left',''),(616,9,'h_custom_menu_right',''),(3972,5731,'_elementor_edit_mode','builder'),(3973,5731,'_elementor_template_type','wp-page'),(3974,5731,'_elementor_version','3.0.11'),(3975,5731,'_wp_page_template','default'),(3976,5731,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5a62248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"398f16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d8a08d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Get Settled\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-handshake\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6dc2d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"cd42469\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Learn English\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-work\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"8b18e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7a3a155\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Find Work\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-fancybox-01.jpg\",\"id\":5377},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-achievement\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"100\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"4d5d1a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a149842\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Creativity\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-05.jpg\",\"id\":1556},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-idea\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"150\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/banner-01.jpg\",\"id\":5389},\"title\":\"Golden years we\\u2019ve passed!\",\"layout\":\"3\",\"number\":\"15\",\"counter_icon\":{\"value\":\"flaticonv3 flaticonv3-group\",\"library\":\"flaticonv3\"},\"counter_number\":\"5000\",\"counter_title\":\"Satisfied Clients\",\"counter_suffix\":\"+\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(618,24,'_wp_page_template','default'),(619,24,'custom_header','1'),(620,24,'header_layout','19'),(621,24,'custom_pagetitle','show'),(622,24,'custom_title','Contact'),(623,24,'ptitle_bg','a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}'),(624,24,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(625,24,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(626,24,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(627,24,'show_sidebar_page',''),(628,24,'sidebar_page_pos','right'),(629,24,'custom_footer',''),(630,24,'footer_layout_custom',''),(631,24,'_elementor_edit_mode','builder'),(632,24,'_elementor_template_type','wp-page'),(633,24,'_elementor_version','3.1.4'),(4785,9,'_elementor_css','a:6:{s:4:\"time\";i:1620520063;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(635,24,'_elementor_data','[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]'),(4416,5809,'_elementor_edit_mode','builder'),(4417,5809,'_elementor_template_type','wp-page'),(4418,5809,'_elementor_version','3.0.11'),(4419,5809,'_elementor_data','[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]'),(4420,5809,'_elementor_css','a:6:{s:4:\"time\";i:1620343990;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4422,24,'_elementor_css','a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4424,3491,'_edit_lock','1620518210:1'),(4403,5807,'_wp_page_template','default'),(4404,5807,'_elementor_edit_mode','builder'),(4405,5807,'_elementor_template_type','wp-page'),(4406,5807,'_elementor_version','3.0.11'),(4407,5807,'_elementor_data','[{\"id\":\"99fbaeb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e818542\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.667000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"d5f3e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"729a4d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/contact-about1.png\",\"id\":1568},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a free consultation with our expert team to solve your prolems.\",\"style\":\"st-line-top1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0f30a93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership Programs*\",\"text_color\":\"#37404c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f409baa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d33da39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f37ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f688838\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a08c2d1\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(637,26,'_wp_page_template','default'),(638,26,'custom_header',''),(639,26,'header_layout','1'),(640,26,'custom_pagetitle','show'),(641,26,'custom_title','About us'),(642,26,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(643,26,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(644,26,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(645,26,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(646,26,'show_sidebar_page',''),(647,26,'sidebar_page_pos','right'),(648,26,'custom_footer',''),(649,26,'footer_layout_custom',''),(650,26,'slide_template','default'),(651,26,'_elementor_edit_mode','builder'),(652,26,'_elementor_template_type','wp-page'),(653,26,'_elementor_version','3.0.1'),(654,26,'_elementor_data','[{\"id\":\"bf4d915\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5282614\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"9d091b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and partnership building consultancy.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b326e2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71555f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"176c3a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b32f49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"11f730c\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem mattis.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}]},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"596ae67\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a href=\\\"#\\\">any question<\\/a>  <span>540-325-1523<\\/span><\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dffa2c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"41e6e03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/signature.png\",\"id\":1892},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"07e4861\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1548748\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3328b5d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2933d62\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1a03c0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"},{\"id\":\"b7c7989\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0f1e849\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4cae67e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advanced services.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0399c33\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83f630e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"584b9d6\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"layout\":\"8\",\"source\":[\"insurance|service-category\"],\"limit\":4,\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"},{\"id\":\"8ddf128\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"3\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a158a9e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(2,2,2,0.9)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30c4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7a3aa06\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba6ff94\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.9369999999999976125764078460633754730224609375},\"elements\":[{\"id\":\"78cbbb6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultio is a professional consulting company\",\"sub_title\":\"Company history\",\"title_color\":\"#ffffff\",\"sub_title_color\":\"#a0a0a0\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"0de7bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.0630000000000023874235921539366245269775390625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"7398b831\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_color\":\"#d4d4d4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"861b1e7\",\"elType\":\"widget\",\"settings\":{\"history\":[{\"title\":\"12th Jan, 2018\",\"content\":\"Establishment of Constrio\",\"_id\":\"d10d5c8\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"2nd Feb, 2018\",\"content\":\"Exhibition Planning & Exhibition Management\",\"_id\":\"94b661a\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"8th Jul, 2018\",\"content\":\"Registered as a construction company\",\"_id\":\"56108b1\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"21st Jul, 2018\",\"content\":\"Growth internationallyfirst half of the 2018s\",\"_id\":\"c00ee7f\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"18th Aug, 2018\",\"content\":\"Construction bought the Greek company Delta\",\"_id\":\"49c19e4\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"19th Aug, 2018\",\"content\":\"The purpose of the business plan\",\"_id\":\"60f348b\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"27th Sep, 2018\",\"content\":\"For lean business plans, operational plans, and strategic plans\",\"_id\":\"4c4e8fe\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"2nd Jan, 2019\",\"content\":\"Focus business history on what matters to planning\",\"_id\":\"094e427\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"8th Jul, 2019\",\"content\":\"Award winner\",\"_id\":\"cad9be1\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"22nd Sep, 2019\",\"content\":\"History to Unite and Inspire People\",\"_id\":\"8219566\",\"item_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"start_text\":\"Start\",\"end_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/theme-15.jpg\",\"id\":1860},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_history\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d781fc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#e4eaee\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"957d09c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e4ee5a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5805aec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.167000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"876857f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"a69669a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.832999999999998408384271897375583648681640625},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f11685b\",\"elType\":\"widget\",\"settings\":{\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"7f74b0d\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"d86d736\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\",\"_id\":\"1c9b8b4\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith \",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"d9784b9\",\"sub_title\":\"\"}],\"slides_to_show\":\"3\",\"arrows\":\"true\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"col_md\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"720bd044\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f6a8df8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"49fda913\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(655,26,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(656,26,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(657,26,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(658,26,'page_h_phone',''),(659,26,'page_h_time',''),(660,26,'loading_page','themeoption'),(661,26,'loading_type','style1'),(662,26,'page_back_totop','themeoption'),(663,26,'rs_page_bg_color','#ffffff'),(664,26,'_elementor_controls_usage','a:12:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:4;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:18:\"title_space_bottom\";i:2;s:5:\"style\";i:4;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_tablet\";i:3;s:22:\"typography_line_height\";i:4;s:29:\"typography_line_height_tablet\";i:3;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_list\";a:2:{s:5:\"style\";i:1;s:4:\"list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:12:\"ct_signature\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:9;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:5:{s:5:\"title\";i:1;s:4:\"desc\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_icon\";i:1;s:9:\"btn_style\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:6:\"source\";i:2;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:2;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:10:\"ct_history\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"history\";i:1;s:9:\"end_image\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(665,28,'_wp_page_template','default'),(666,28,'custom_header',''),(667,28,'header_layout','1'),(668,28,'custom_pagetitle','show'),(669,28,'custom_title',''),(670,28,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(671,28,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(672,28,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#eef2fb\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(238,242,251,1)\";}'),(673,28,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(674,28,'show_sidebar_page',''),(675,28,'sidebar_page_pos','right'),(676,28,'custom_footer',''),(677,28,'footer_layout_custom',''),(678,28,'slide_template','default'),(679,28,'_elementor_edit_mode','builder'),(680,28,'_elementor_template_type','wp-page'),(681,28,'_elementor_version','2.8.2'),(682,28,'_elementor_data','[{\"id\":\"53e9f59\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d122fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.417000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"a1dc510\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to assemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"603daca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d3ffe8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dc6244\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d5aaa1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"88f2e7b\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"35409ba\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Jewel D Smith\",\"position\":\"Executive Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"80b51bd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-02.jpg\",\"id\":1691},\"title\":\"Alan Smith\",\"position\":\"Managing Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"46930fd\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-03.jpg\",\"id\":1692},\"title\":\"Brad Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"82fc396\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"71c9864\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-04.jpg\",\"id\":1693},\"title\":\"Joyce\\u00a0Thompson\",\"position\":\"Asistant Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"62b6c11\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"10be1e6\",\"btn_text\":\"Details\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Joyce Thompson\",\"position\":\"Executive Manager\",\"email\":\"\",\"phone\":\"\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"ffd748f\",\"btn_text\":\"Details\"}],\"col_md\":\"2\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"100\",\"height\":\"100\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"186df5b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f140b8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"661063e1\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(683,28,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(684,28,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(685,28,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:6:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(686,30,'_wp_page_template','default'),(687,30,'custom_header',''),(688,30,'header_layout','1'),(689,30,'custom_pagetitle','show'),(690,30,'custom_title',''),(691,30,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1535\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-150x150.jpg\";}}'),(692,30,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(693,30,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(694,30,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(695,30,'show_sidebar_page',''),(696,30,'sidebar_page_pos','right'),(697,30,'custom_footer',''),(698,30,'footer_layout_custom',''),(699,30,'slide_template','default'),(700,30,'_elementor_edit_mode','builder'),(701,30,'_elementor_template_type','wp-page'),(702,30,'_elementor_data','[{\"id\":\"595e705\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"90\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fbf6e39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e58aff6\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"sub_title\":\"FAQ\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"0bac2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64b4dfa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8d88f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"74\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"32\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"325916e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"60e5f30\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"Will membership plans be charged automatically?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"0f620d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"346929e\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"Where can I find out about funding?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"98e146c\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"25b80e7\"},{\"ac_title\":\"Can I get a free trial before I purchase?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5caa056\"}]},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d6e093c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f503527\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fee7573\",\"elType\":\"widget\",\"settings\":{\"title\":\"Still have you any problem  for solutions?\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"d0a7700\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40d6687\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership\\nPrograms or Coaching and Mentoring services feel free to speak to me personally by call us during business hours.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6783ba1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"53\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dd5ac9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.582999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"1bf7025\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1655275\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"daf846a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"ee30c25\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.417000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"6017a24\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"1615\",\"style_l1\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4290b7d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6fc683bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"65d291e6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a2d1f31\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(703,30,'_elementor_version','2.7.5'),(704,30,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(705,30,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(706,30,'_elementor_controls_usage','a:8:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:2;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:8;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:5;s:16:\"content_position\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:5;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:12:\"ct_accordion\";i:2;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(707,32,'_wp_page_template','default'),(708,32,'custom_header',''),(709,32,'header_layout','1'),(710,32,'custom_pagetitle','show'),(711,32,'custom_title',''),(712,32,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(713,32,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(714,32,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(715,32,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(716,32,'show_sidebar_page',''),(717,32,'sidebar_page_pos','right'),(718,32,'custom_footer',''),(719,32,'footer_layout_custom',''),(720,32,'slide_template','default'),(721,32,'_elementor_edit_mode','builder'),(722,32,'_elementor_template_type','wp-page'),(723,32,'_elementor_version','2.7.5'),(724,32,'_elementor_data','[{\"id\":\"47aaa16\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2be9dea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2740d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e3c1a10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42e8890\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the\\nconnection, we create platforms.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c8389a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"0632e7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"ba3c267\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1214\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"1217\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f5afa04\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2854a98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1927c5f8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(725,32,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(726,32,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(727,32,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(728,123,'_wp_page_template','default'),(729,123,'custom_header',''),(730,123,'header_layout','1'),(731,123,'custom_pagetitle','themeoption'),(732,123,'custom_title',''),(733,123,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(734,123,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(735,123,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(736,123,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(737,123,'show_sidebar_page',''),(738,123,'sidebar_page_pos','right'),(739,123,'custom_footer',''),(740,123,'footer_layout_custom',''),(741,123,'slide_template','default'),(742,123,'_elementor_edit_mode','builder'),(743,123,'_elementor_template_type','wp-page'),(744,123,'_elementor_version','2.8.1'),(745,123,'_elementor_data','[{\"id\":\"4f12f44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607e712a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33eb12a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Pricing\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"20cca318\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dc34528\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"984afbb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"baf5018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"be0576a\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"true\",\"limit\":6,\"col_md\":\"2\",\"slides_to_scroll\":\"3\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33c065af\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8afbc6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2eb38a40\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(746,123,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(747,123,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(748,123,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:3:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;s:15:\"stretch_section\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:3;s:7:\"padding\";i:3;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:16:\"slides_to_scroll\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(749,125,'_wp_page_template','default'),(750,125,'custom_header',''),(751,125,'header_layout','1'),(752,125,'custom_pagetitle','show'),(753,125,'custom_title','Blog Grid'),(754,125,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(755,125,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(756,125,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(757,125,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(758,125,'show_sidebar_page','1'),(759,125,'sidebar_page_pos','left'),(760,125,'custom_footer',''),(761,125,'footer_layout_custom',''),(762,125,'slide_template','default'),(763,125,'_elementor_edit_mode','builder'),(764,125,'_elementor_template_type','wp-page'),(765,125,'_elementor_version','2.8.2'),(766,125,'_elementor_data','[{\"id\":\"928f20f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"b1ac6d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c0262c\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(767,125,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(768,127,'_wp_page_template','default'),(769,127,'custom_header',''),(770,127,'header_layout','1'),(771,127,'custom_pagetitle','show'),(772,127,'custom_title','Blog Grid'),(773,127,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(774,127,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(775,127,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(776,127,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(777,127,'show_sidebar_page','1'),(778,127,'sidebar_page_pos','right'),(779,127,'custom_footer',''),(780,127,'footer_layout_custom',''),(781,127,'slide_template','default'),(782,127,'_elementor_edit_mode','builder'),(783,127,'_elementor_template_type','wp-page'),(784,127,'_elementor_version','2.8.2'),(785,127,'_elementor_data','[{\"id\":\"9549dba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"fba6296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"94a4695\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false}]'),(786,127,'_elementor_controls_usage','a:3:{s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(787,129,'_wp_page_template','default'),(788,129,'custom_header',''),(789,129,'header_layout','1'),(790,129,'custom_pagetitle','show'),(791,129,'custom_title','Blog Grid'),(792,129,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(793,129,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(794,129,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(795,129,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(796,129,'show_sidebar_page',''),(797,129,'sidebar_page_pos','right'),(798,129,'custom_footer',''),(799,129,'footer_layout_custom',''),(800,129,'slide_template','default'),(801,129,'_elementor_edit_mode','builder'),(802,129,'_elementor_template_type','wp-page'),(803,129,'_elementor_data','[{\"id\":\"fb04492\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"80\",\"bottom\":\"25\",\"left\":\"80\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b3c5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1a14f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn something more from our blog\",\"sub_title\":\"Our Service area\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"f25fa3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6d957c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3df308c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"extended\"},\"elements\":[{\"id\":\"95c454c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b97f62b\",\"elType\":\"widget\",\"settings\":{\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"filter_alignment\":\"right\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ef66b82\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4112df1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30b600db\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(804,129,'_elementor_version','2.9.3'),(805,129,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:12:\"ct_blog_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:10:\"ct_animate\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"filter_alignment\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:8:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(806,132,'_wp_page_template','default'),(807,132,'_elementor_controls_usage','a:0:{}'),(808,132,'custom_header',''),(809,132,'header_layout','1'),(810,132,'custom_pagetitle','themeoption'),(811,132,'custom_title',''),(812,132,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(813,132,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(814,132,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(815,132,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(816,132,'show_sidebar_page',''),(817,132,'sidebar_page_pos','right'),(818,132,'custom_footer',''),(819,132,'footer_layout_custom',''),(820,132,'slide_template','default'),(821,134,'_wp_page_template','template-parts/blog-classic.php'),(822,134,'_elementor_controls_usage','a:0:{}'),(823,134,'custom_header',''),(824,134,'header_layout','1'),(825,134,'custom_pagetitle','show'),(826,134,'custom_title','Blog Standard'),(827,134,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(828,134,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(829,134,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(830,134,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(831,134,'show_sidebar_page','1'),(832,134,'sidebar_page_pos','left'),(833,134,'custom_footer',''),(834,134,'footer_layout_custom',''),(835,134,'slide_template','default'),(836,136,'_wp_page_template','template-parts/blog-classic.php'),(837,136,'_elementor_controls_usage','a:0:{}'),(838,136,'custom_header',''),(839,136,'header_layout','1'),(840,136,'custom_pagetitle','show'),(841,136,'custom_title','Blog Standard'),(842,136,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(843,136,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(844,136,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(845,136,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(846,136,'show_sidebar_page',''),(847,136,'sidebar_page_pos','right'),(848,136,'custom_footer',''),(849,136,'footer_layout_custom',''),(850,136,'slide_template','default'),(851,362,'_wp_page_template','default'),(852,362,'custom_header',''),(853,362,'header_layout','1'),(854,362,'custom_pagetitle','themeoption'),(855,362,'custom_title',''),(856,362,'ptitle_bg','a:2:{s:16:\"background-image\";s:91:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/gallery-02.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1553\";s:6:\"height\";s:3:\"600\";s:5:\"width\";s:3:\"600\";s:9:\"thumbnail\";s:99:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/gallery-02-150x150.jpg\";}}'),(857,362,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(858,362,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(859,362,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(860,362,'show_sidebar_page',''),(861,362,'sidebar_page_pos','right'),(862,362,'custom_footer',''),(863,362,'footer_layout_custom',''),(864,362,'slide_template','default'),(865,362,'_elementor_edit_mode','builder'),(866,362,'_elementor_template_type','wp-page'),(867,362,'_elementor_version','2.7.5'),(868,362,'_elementor_data','[{\"id\":\"2645f20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"33d032e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0f31e21\",\"elType\":\"widget\",\"settings\":{\"title\":\"We will satisfy you by our work ideas\",\"sub_title\":\"FAQ\",\"style\":\"st-line-top1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"89f4b61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"80ad649\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e2d4a6c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"de3f4f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"605e76d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Ronald Dumple\",\"position\":\"Web Designer\",\"email\":\"info@consulio.com \",\"phone\":\"+123 (4567) 890\",\"address\":\"380 St Kilda Road, Melbourne VIC 3004, Australia\",\"icons\":[{\"ct_icon\":{\"value\":\"material zmdi zmdi-facebook\",\"library\":\"material\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7cf43ed\"},{\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"def76d5\"},{\"ct_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"35b4313\"},{\"ct_icon\":{\"value\":\"fab fa-behance\",\"library\":\"fa-brands\"},\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b97b712\"}],\"btn_text\":\"Appionment\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_team_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b0ab90\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11c2a9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5f5bc25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore  dolore sedodir magna aliqua.  Lorem Ipsum has been rode. Making good food choices takes on special significant for people living with diabetes.  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua anim id est laborum. Sed ut perspiciatis unde.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b73102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Ut enim ad minim veniam. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f3d2e30\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6b4a0ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17e0426\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-skill\",\"library\":\"flaticon\"},\"title_text\":\"Expert team member\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"eaf1b54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"faff530\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"selected_icon\":{\"value\":\"flaticon flaticon-setting-spanner\",\"library\":\"flaticon\"},\"title_text\":\"24\\/7 Customer support\",\"description_text\":\"Lorem ipsum dolor sit amet, cotu\\ntopsectetur adipisicing elit, sed.\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1927758b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aafda89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"29260a70\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(869,362,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(870,362,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(871,362,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:6:\"margin\";i:3;}}}}s:15:\"ct_team_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_Content\";a:9:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:8:\"position\";i:1;s:5:\"email\";i:1;s:5:\"phone\";i:1;s:7:\"address\";i:1;s:5:\"icons\";i:1;s:8:\"btn_text\";i:1;s:8:\"btn_link\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(872,367,'_wp_page_template','default'),(873,367,'custom_header',''),(874,367,'header_layout','1'),(875,367,'custom_pagetitle','show'),(876,367,'custom_title',''),(877,367,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(878,367,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(879,367,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#e4eaee\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(228,234,238,1)\";}'),(880,367,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(881,367,'show_sidebar_page',''),(882,367,'sidebar_page_pos','right'),(883,367,'custom_footer',''),(884,367,'footer_layout_custom',''),(885,367,'slide_template','default'),(886,367,'_elementor_edit_mode','builder'),(887,367,'_elementor_template_type','wp-page'),(888,367,'_elementor_version','2.8.2'),(889,367,'_elementor_data','[{\"id\":\"d23e4f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cb9323b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.75},\"elements\":[{\"id\":\"7f58838\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have many reviews from our satisfied clients.\",\"style\":\"st-line-left1\",\"_margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"daa1215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.25,\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cb6926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It\\u2019s always a joy to hear that the work I do has positively impacted our clients and that they are happy to share their experience.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"01c0a8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1695462\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b6c0336\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Kathleen Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"802cda4\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-08.jpg\",\"id\":1657},\"title\":\"Van Hunter\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"cae1995\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Macquarie Telecom\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"3804c9a\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Senior Director\",\"description\":\"We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\",\"_id\":\"9cc7cf6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Carolyn Smith\",\"position\":\"Senior Director\",\"description\":\"I love that moment when we find the connections between organisations and envisage the initiative or platform.\",\"_id\":\"45dd5f6\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Pamela Johnson\",\"position\":\"Leadership Group\",\"description\":\"He was great in planting the seed and allowing the group to transition into a\\ncollaborative discussion pertaining.\",\"_id\":\"5a0d1f7\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ed0847\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d04724\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d8484a6\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(890,367,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(891,367,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(892,367,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(893,407,'_wp_page_template','default'),(894,407,'custom_header',''),(895,407,'header_layout','1'),(896,407,'custom_pagetitle','show'),(897,407,'custom_title','Services'),(898,407,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(899,407,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(900,407,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(901,407,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(902,407,'show_sidebar_page',''),(903,407,'sidebar_page_pos','right'),(904,407,'custom_footer',''),(905,407,'footer_layout_custom',''),(906,407,'slide_template','default'),(907,407,'_elementor_edit_mode','builder'),(908,407,'_elementor_template_type','wp-page'),(909,407,'_elementor_version','2.9.7'),(910,407,'_elementor_data','[{\"id\":\"f019bad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5ce29c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"d3b6aca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"877c444\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a619a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d640f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e2ce89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"16d5b63\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_md\":\"2\",\"source\":[\"corporate|service-category\"],\"ct_animate\":\"wow fadeIn\",\"col_lg\":\"3\",\"col_xl\":\"3\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b5b5683\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4106b489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5b8ee2df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(911,407,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(912,409,'_wp_page_template','default'),(913,409,'custom_header',''),(914,409,'header_layout','1'),(915,409,'custom_pagetitle','show'),(916,409,'custom_title','Services'),(917,409,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(918,409,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(919,409,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(920,409,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(921,409,'show_sidebar_page',''),(922,409,'sidebar_page_pos','right'),(923,409,'custom_footer',''),(924,409,'footer_layout_custom',''),(925,409,'slide_template','default'),(926,409,'_elementor_edit_mode','builder'),(927,409,'_elementor_template_type','wp-page'),(928,409,'_elementor_version','2.9.14'),(929,409,'_elementor_data','[{\"id\":\"21b714b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"76\",\"right\":0,\"bottom\":\"68\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"69e72f28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.9909999999999996589394868351519107818603515625},\"elements\":[{\"id\":\"2703b0d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4b3f4661\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.0090000000000003410605131648480892181396484375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76dfc09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8ea759\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"68d2945\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5249e166\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"button_text\":\"Read more\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\",\"source\":[\"corporate|service-category\"],\"ct_animate\":\"wow fadeInUp\",\"layout\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a50ed4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"26c4891f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6cbd01b9\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(930,409,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(931,415,'_wp_page_template','default'),(932,415,'custom_header',''),(933,415,'header_layout','1'),(934,415,'custom_pagetitle','themeoption'),(935,415,'custom_title',''),(936,415,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(937,415,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(938,415,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(939,415,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(940,415,'show_sidebar_page',''),(941,415,'sidebar_page_pos','right'),(942,415,'custom_footer',''),(943,415,'footer_layout_custom',''),(944,415,'slide_template','default'),(945,415,'_elementor_edit_mode','builder'),(946,415,'_elementor_template_type','wp-page'),(947,415,'_elementor_data','[{\"id\":\"934d137\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b2993d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"d7e414a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"c5cb0c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"255149c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"228c27a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf73b30\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7856011\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50dc1332\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7156578d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"782c88ec\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(948,415,'_elementor_version','2.8.2'),(949,415,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(950,417,'_wp_page_template','default'),(951,417,'custom_header',''),(952,417,'header_layout','1'),(953,417,'custom_pagetitle','themeoption'),(954,417,'custom_title',''),(955,417,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(956,417,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(957,417,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(958,417,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(959,417,'show_sidebar_page',''),(960,417,'sidebar_page_pos','right'),(961,417,'custom_footer',''),(962,417,'footer_layout_custom',''),(963,417,'slide_template','default'),(964,417,'_elementor_edit_mode','builder'),(965,417,'_elementor_template_type','wp-page'),(966,417,'_elementor_version','2.8.2'),(967,417,'_elementor_data','[{\"id\":\"480e3e3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29909522\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"3a5a486b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"2047a9dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c91bb9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"437e1689\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"17\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2cfad8b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"52e98c5\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"layout\":\"2\",\"limit\":5,\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75ed166d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c7084ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"185e01e3\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(968,417,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:10:\"ct_animate\";i:1;}s:14:\"source_section\";a:1:{s:5:\"limit\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(969,748,'_elementor_controls_usage','a:0:{}'),(970,749,'_elementor_controls_usage','a:0:{}'),(971,750,'_elementor_controls_usage','a:0:{}'),(972,751,'_elementor_controls_usage','a:0:{}'),(973,783,'_wp_page_template','default'),(974,783,'_elementor_controls_usage','a:0:{}'),(975,783,'custom_header',''),(976,783,'header_layout','1'),(977,783,'custom_pagetitle','themeoption'),(978,783,'custom_title',''),(979,783,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(980,783,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(981,783,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(982,783,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(983,783,'show_sidebar_page',''),(984,783,'sidebar_page_pos','right'),(985,783,'custom_footer',''),(986,783,'footer_layout_custom',''),(987,783,'slide_template','default'),(988,1972,'_wp_page_template','default'),(989,1972,'custom_header',''),(990,1972,'header_layout','1'),(991,1972,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(992,1972,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(993,1972,'custom_pagetitle','show'),(994,1972,'custom_title',''),(995,1972,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1532\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-150x150.jpg\";}}'),(996,1972,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(997,1972,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(998,1972,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(999,1972,'show_sidebar_page',''),(1000,1972,'sidebar_page_pos','right'),(1001,1972,'custom_footer',''),(1002,1972,'footer_layout_custom',''),(1003,1972,'slide_template','default'),(1004,1972,'_elementor_edit_mode','builder'),(1005,1972,'_elementor_template_type','wp-page'),(1006,1972,'_elementor_version','2.8.2'),(1007,1972,'_elementor_data','[{\"id\":\"68c872\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"61\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"553856d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b6cccf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"From startups to Fortune 500s, WayUp offers the best internships and jobs.\",\"sub_title\":\"Career\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7bfd02a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ec2a151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f8a622\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"ea0c095\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7bf4992\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Digital Designer\",\"btn_text\":\"Apply now fds\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"e535d05\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/icon-envato.png\",\"id\":1990},\"title\":\"Graphic Artist\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"4ad9249\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/icon-themeforest.png\",\"id\":1991},\"title\":\"Sales Reporter\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"0bfca0b\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/icon-codecanyon.png\",\"id\":1989},\"title\":\"Digital Marketer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"cddfe0a\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/icon-google.png\",\"id\":1985},\"title\":\"Web Designer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"24295dc\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/icon-career.png\",\"id\":1988},\"title\":\"Web Developer\",\"btn_text\":\"Apply now\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"\",\"content_list\":[{\"_id\":\"95e24e9\"}],\"_id\":\"be4c6df\",\"feature\":\"[{\\\"icon\\\":\\\"fa fa-paperclip\\\",\\\"content\\\":\\\"Jam Sports Productions LLC\\\"},{\\\"icon\\\":\\\"fa fa-user\\\",\\\"content\\\":\\\"Admin\\\"},{\\\"icon\\\":\\\"fa fa-map-marker\\\",\\\"content\\\":\\\"Newyork, SCT\\\"},{\\\"icon\\\":\\\"fa fa-life-ring\\\",\\\"content\\\":\\\"Remote\\\"}]\",\"description\":\"We would love to share a similar experience and how I learned some valuable lessons. \"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_career_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"380c36d3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"610f6d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"379456c7\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1008,1972,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:1:{s:5:\"title\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:14:\"ct_career_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(1009,2269,'_wp_page_template','default'),(1010,2269,'custom_header','0'),(1011,2269,'header_layout','2'),(1012,2269,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1013,2269,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1014,2269,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1015,2269,'custom_pagetitle','themeoption'),(1016,2269,'custom_title',''),(1017,2269,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1018,2269,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1019,2269,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1020,2269,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1021,2269,'show_sidebar_page',''),(1022,2269,'sidebar_page_pos','right'),(1023,2269,'custom_footer','0'),(1024,2269,'footer_layout_custom',''),(1025,2269,'slide_template','default'),(1026,2269,'_elementor_edit_mode','builder'),(1027,2269,'_elementor_template_type','wp-page'),(1028,2269,'_elementor_version','2.9.3'),(1029,2269,'_elementor_data','[{\"id\":\"3770f102\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"364d1073\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"544239aa\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Finance\",\"shortcode\":\"[rev_slider alias=\\\"finance\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c64da04\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#f5f3f3\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"67\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"88a5daf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99},\"elements\":[{\"id\":\"3f8bba26\",\"elType\":\"widget\",\"settings\":{\"source\":[\"consultant|service-category\"],\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_sm\":\"1\",\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"},{\"id\":\"53a5ea8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"You can also find our <a href=\\\"#\\\" class=\\\"link-underline\\\">Consultant Service<\\/a> to contact for the consulting\",\"align\":\"center\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a747091\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"65\",\"right\":0,\"bottom\":\"18\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"261cbf0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54},\"elements\":[{\"id\":\"20e97492\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and partnership building consultancy.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"27f827a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71bd656e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"31a20797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e1d086b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38da7403\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4b4df54e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategic vision\",\"description_text\":\"A client once told us that where the others focus on one star one issue we see the whole sky. \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"275dcd69\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Interpersonal skills\",\"description_text\":\"Forging relationships between\\nmulti-national corporations, govern ments and global NGOs begins with connections between people.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true},{\"id\":\"5a98ce9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"176899ec\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Networks that span sectors\",\"description_text\":\"Over more than 20 years, we\\u2019ve \\nfostered trusted relationships across government, industry and global forums. \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"},{\"id\":\"3fe9281f\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Flexible delivery model\",\"description_text\":\"We adapt our delivery to the way your work, whether as an external provider or by providing senior.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_feature\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14a9e84d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46,\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6abde327\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/about1.png\",\"id\":1877},\"image_size\":\"full\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"-17\",\"bottom\":\"0\",\"left\":\"-22\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5db5ae11\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(14,14,14,0.85)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12dcc0f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"b54a2aa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"75\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"774cd4d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1a769387\",\"elType\":\"widget\",\"settings\":{\"title\":\"We position our clients at the forefront of their field by advancing an agenda.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"67e213ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"617bae36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 20 years\\u2019 senior experience forging\\ncollaborations across government, private sector and\\ninternational forums.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"332806ad\",\"elType\":\"widget\",\"settings\":{\"source\":[\"business|service-category\"],\"limit\":4,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"style\":\"style2\",\"layout\":\"3\",\"ct_animate\":\"wow lightSpeedIn\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea6b9bd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"52\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-01.png\",\"id\":2056},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"64\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18cd0ee4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"63723817\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to assemble with the skills of task at hand. \",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a3f7619\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 25 years working for one of Australia\\u2019s most\\nrecognised and successful retailers purpose and inspired culture, where people work cohesively towards shared goals.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"022\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"234482b1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"17\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"377da551\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"78e6a0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Active to work\",\"bar_color\":\"#d1651a\",\"description\":\"We do not believe in contracts\\ntherefore we do not have one. \\nWe are fully invested.\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"3fa4fcd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21ce9356\",\"elType\":\"widget\",\"settings\":{\"title\":\"Completed work\",\"percentage_value\":75,\"bar_color\":\"#d1651a\",\"description\":\"You will be fully satisfied, you\\nare under no obligation to continue with the services I provide.\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"93ea274\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3a5f7f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/about-02.png\",\"id\":2046},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69fd9eed\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-02.png\",\"id\":2070},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#0e0e0e\"},\"elements\":[{\"id\":\"751d081\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"98959c2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ff261f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"7baa1333\",\"elType\":\"widget\",\"settings\":{\"title\":\"To review means to look back over something for evaluation or memory.\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"6e3e1895\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55403599\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It\\u2019s always a joy to hear that the work I do has positively\\nimpacted our clients and that they are happy to share their\\nexperience.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4357c297\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-10.jpg\",\"id\":2074},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"eba0dc9\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-author-01.jpg\",\"id\":2170},\"title\":\"Kathleen Smith \",\"position\":\"Senior Director\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"a09cd4e\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-author-02.jpg\",\"id\":2171},\"title\":\"Pamela Johnson \",\"position\":\"Leadership Group\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"5ce29fd\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Macquarie Telecom \",\"position\":\"Senior Director\",\"description\":\"I had the pleasure of working with Consultio as part of a 6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"_id\":\"53bc7b0\",\"sub_title\":\"\"}],\"arrows\":\"true\",\"infinite\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pause_on_hover\":\"true\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"speed\":1000},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35df438d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f9f9f9\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-03.png\",\"id\":2091},\"background_position\":\"bottom left\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bdb89ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51b259f2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f636e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"You can learn more from our asked questions\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"548ca755\",\"elType\":\"widget\",\"settings\":{\"ct_accordion\":[{\"ac_title\":\"What should I include in my personal statement?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"da12eec\"},{\"ac_title\":\"What will happen when I\\u2019ve sent my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"d8c2527\"},{\"ac_title\":\"How can I make a change to my application?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"5e4a690\"},{\"ac_title\":\"How can I consult with the consultant team?\",\"ac_content\":\"Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt<\\/u> ut labore.\",\"_id\":\"c7e6a44\"}],\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_accordion\"}],\"isInner\":false},{\"id\":\"6f9ea628\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21843550\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#edeff1\",\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"50\",\"bottom\":\"65\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"65\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb92f55\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5e0cea99\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get a free quote here\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"163de2e5\",\"elType\":\"widget\",\"settings\":{\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cb2b1f1\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18312165\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"64\",\"right\":0,\"bottom\":\"43\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7bd3e570\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53},\"elements\":[{\"id\":\"2603f09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Many organizations realize the benefits of forming work teams.\",\"sub_title\":\"Services\",\"sub_title_color\":\"#0e0e0e\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"style\":\"st-line-left1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4befb6d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"151f7883\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e9836a6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7cd7ecc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7c45687c\",\"elType\":\"widget\",\"settings\":{\"team\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"e77fd44\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-team-02.jpg\",\"id\":2115},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"3bc0a9d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-team-03.jpg\",\"id\":2116},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"9ee3f6e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"7a295e1\"}],\"slides_to_show\":\"4\",\"infinite\":\"true\",\"slides_to_show_tablet\":\"3\",\"col_xl\":\"4\",\"ct_animate\":\"wow flipInY\"},\"elements\":[],\"widgetType\":\"ct_team_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67dedac5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fcd0ddb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"4968aa17\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"style\":\"st-line-left1\",\"title_color\":\"#ffffff\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6497515c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fa9faad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"6ee56c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c68a807\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3cff6e8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"20d432ae\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"23c69e92\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"705e3eb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"842be3a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"2d7dfe44\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56535aa7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5a26d938\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"ba3bb53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"311bee62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"656dca81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a0ee215\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"72\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"622420c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"191b6b73\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51a00de5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(14,14,14,0.94)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4983fe1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30920f22\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b22bf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"56563d4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch for any kind of help and informations\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"13f563fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3567dd9f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"707d8c2e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"361413c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"a75ff28\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Our head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"5c3a0137\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"3bb51865\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail us for information\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"571c1c93\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"2524e5ff\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"2166\",\"style_l1\":\"style3\",\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27ad81a8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56c1556c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"css_classes\":\"order1\"},\"elements\":[{\"id\":\"68fa16a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/award-01.jpg\",\"id\":2173},\"title\":\"Best Business Award \\u201819\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"613fb2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/award-02.jpg\",\"id\":2174},\"title\":\"Family Business Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"53cb55ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/award-03.jpg\",\"id\":2175},\"title\":\"Excellence in Exporting\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"}],\"isInner\":false},{\"id\":\"163c94fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":57.99600000000000221689333557151257991790771484375,\"background_background\":\"classic\",\"background_color\":\"#0e0e0e\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/award.png\",\"id\":2180},\"background_overlay_position\":\"bottom right\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"37\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"css_classes\":\"order3\"},\"elements\":[{\"id\":\"12c3a0ab\",\"elType\":\"widget\",\"settings\":{\"title\":\"We believe, the passion trying & skill can make a top-performing company. \",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"style\":\"st-line-left1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3cd4e5d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/award-year.png\",\"id\":2179},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"82\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4e34c46f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Awards We Got!\",\"title_tag\":\"h5\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_typography_font_weight\":\"300\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6844b478\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"css_classes\":\"order2\"},\"elements\":[{\"id\":\"5d7fd13c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/award-04.jpg\",\"id\":2176},\"title\":\"Global Safety Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"150cbc8d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/award-05.jpg\",\"id\":2177},\"title\":\"Sales Excellence Award \",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"},{\"id\":\"486993ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/award-06.jpg\",\"id\":2178},\"title\":\"Top Leading Global  Trade\",\"type\":\"type_bg\"},\"elements\":[],\"widgetType\":\"ct_award\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2df47be1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fc868f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4ef4969e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re here to share story & more news from resource library.\",\"sub_title\":\"Pricing\",\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"537e3d99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"45\",\"bottom\":\"8\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"561e65e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We would love to share a similar experience and how I\\nlearned some valuable lessons during a downturn.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1997081e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"11\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"183234bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7ca697e\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"600\",\"height\":\"389\"},\"slides_to_show\":\"3\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"arrows\":\"\",\"dots\":\"\",\"limit\":4,\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35afcf2c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c8c38a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"14eada90\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"41e55d9\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"ct_animate\":\"wow zoomIn\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1030,2269,'page_h_phone',''),(1031,2269,'page_h_time',''),(1032,2269,'loading_page','themeoption'),(1033,2269,'loading_type','style1'),(1034,2269,'page_back_totop','themeoption'),(1035,2269,'rs_page_bg_color','#ffffff'),(1036,2269,'_elementor_controls_usage','a:22:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:42;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:8:{s:6:\"margin\";i:13;s:7:\"z_index\";i:1;s:13:\"margin_tablet\";i:8;s:7:\"padding\";i:4;s:11:\"css_classes\";i:3;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:33;s:19:\"_inline_size_mobile\";i:4;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:26;s:15:\"stretch_section\";i:8;s:16:\"content_position\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:15;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:10;s:16:\"background_color\";i:6;s:16:\"background_image\";i:6;s:19:\"background_position\";i:6;s:21:\"background_attachment\";i:3;s:15:\"background_size\";i:4;s:17:\"background_repeat\";i:3;}s:26:\"section_background_overlay\";a:7:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:4;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:25:\"background_overlay_repeat\";i:1;s:23:\"background_overlay_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:14;s:7:\"padding\";i:21;s:14:\"padding_tablet\";i:8;s:14:\"padding_mobile\";i:3;s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:1:{s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:10;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:1;s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:11;s:20:\"typography_font_size\";i:10;s:27:\"typography_font_size_tablet\";i:9;s:22:\"typography_line_height\";i:10;s:29:\"typography_line_height_tablet\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:7;s:12:\"_css_classes\";i:11;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:4;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:12:{s:5:\"title\";i:13;s:27:\"title_typography_typography\";i:12;s:26:\"title_typography_font_size\";i:9;s:33:\"title_typography_font_size_tablet\";i:12;s:28:\"title_typography_line_height\";i:9;s:35:\"title_typography_line_height_tablet\";i:9;s:18:\"title_space_bottom\";i:6;s:5:\"style\";i:10;s:10:\"ct_animate\";i:11;s:11:\"title_color\";i:6;s:9:\"title_tag\";i:1;s:28:\"title_typography_font_weight\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:3;s:15:\"sub_title_color\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_feature\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:10:\"ct_animate\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;s:5:\"align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:12:\"_css_classes\";i:2;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:6:\"source\";i:1;s:5:\"limit\";i:1;}s:12:\"grid_section\";a:2:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:5:\"style\";i:1;s:6:\"layout\";i:1;}}}}s:12:\"ct_piecharts\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:17:\"section_piecharts\";a:5:{s:5:\"title\";i:2;s:9:\"bar_color\";i:2;s:11:\"description\";i:2;s:10:\"ct_animate\";i:2;s:16:\"percentage_value\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:2;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:14:\"pause_on_hover\";i:1;s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:5:\"speed\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:12:\"ct_accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:12:\"ct_accordion\";i:1;s:10:\"ct_animate\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:2;s:10:\"ct_animate\";i:2;s:8:\"style_l1\";i:1;}}}}s:16:\"ct_team_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:4:\"team\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:3:{s:8:\"infinite\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:10:\"ct_counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:7:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;s:9:\"show_icon\";i:4;s:8:\"bg_image\";i:4;s:4:\"size\";i:2;s:10:\"ct_animate\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:4;s:14:\"_margin_mobile\";i:4;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:3;s:10:\"ct_animate\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:8:\"ct_award\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:3:{s:5:\"image\";i:6;s:5:\"title\";i:6;s:4:\"type\";i:6;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;s:5:\"limit\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:4:\"dots\";i:1;s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}}'),(1037,3491,'_wp_page_template','default'),(1038,3491,'custom_header','1'),(1039,3491,'header_layout','19'),(1040,3491,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4465,3491,'h_custom_menu_right',''),(1041,3491,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4464,3491,'h_custom_menu_left',''),(1042,3491,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4463,3491,'h_custom_menu',''),(1043,3491,'page_h_phone',''),(1044,3491,'page_h_time',''),(1045,3491,'custom_pagetitle','show'),(1046,3491,'custom_title','About The Book'),(1047,3491,'ptitle_bg','a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}'),(1048,3491,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1049,3491,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1050,3491,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(1051,3491,'show_sidebar_page',''),(1052,3491,'sidebar_page_pos','right'),(1053,3491,'loading_page','themeoption'),(1054,3491,'loading_type','style1'),(1055,3491,'loading_color',''),(1056,3491,'custom_footer','0'),(1057,3491,'footer_layout_custom',''),(1058,3491,'page_back_totop','themeoption'),(1060,3491,'_elementor_edit_mode','builder'),(1061,3491,'_elementor_template_type','wp-page'),(1062,3491,'_elementor_version','3.1.4'),(1063,3491,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae56fb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"Buy Your Copy\",\"link\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/about-the-book\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\",\"background_color\":\"#C90404\",\"button_background_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4441,5812,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4442,5812,'_elementor_css','a:6:{s:4:\"time\";i:1620517812;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"flaticonv2\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4471,5816,'_wp_page_template','default'),(4472,5816,'_elementor_edit_mode','builder'),(4473,5816,'_elementor_template_type','wp-page'),(4474,5816,'_elementor_version','3.1.4'),(4475,5816,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4504,5821,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae56fb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"Buy Your Copy\",\"link\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/about-the-book\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\",\"background_color\":\"#C90404\",\"button_background_hover_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4482,5817,'_elementor_css','a:6:{s:4:\"time\";i:1620517950;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4481,5817,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4476,5816,'_elementor_css','a:6:{s:4:\"time\";i:1620517950;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4477,5817,'_wp_page_template','default'),(4478,5817,'_elementor_edit_mode','builder'),(4479,5817,'_elementor_template_type','wp-page'),(4480,5817,'_elementor_version','3.1.4'),(4452,5814,'_wp_attached_file','2021/05/481666.jpg'),(4453,5814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2021/05/481666.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"481666-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"481666-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"481666-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"481666-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"481666-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"481666-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"481666-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"481666-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"481666-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"481666-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"481666-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"481666-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"481666-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4454,5815,'_wp_page_template','default'),(4455,5815,'_elementor_edit_mode','builder'),(4456,5815,'_elementor_template_type','wp-page'),(4457,5815,'_elementor_version','3.1.4'),(4458,5815,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4459,5815,'_elementor_controls_usage','a:5:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:10:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:18:\"title_space_bottom\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:3:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:2;s:19:\"_inline_size_tablet\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(4460,5815,'_elementor_css','a:6:{s:4:\"time\";i:1620517950;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4461,3491,'_edit_last','1'),(4462,3491,'p_h_style1','themeoption'),(4466,3491,'p_page_title_color',''),(4467,3491,'ptitle_overlay','themeoption'),(4468,3491,'ptitle_breadcrumb_page','themeoption'),(4469,3491,'ptitle_breadcrumb_color',''),(4470,3491,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4483,5818,'_wp_page_template','default'),(4484,5818,'_elementor_edit_mode','builder'),(4485,5818,'_elementor_template_type','wp-page'),(4486,5818,'_elementor_version','3.1.4'),(4487,5818,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About The Book\",\"sub_title_style\":\"style8\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element elementor-element-3c3b806 elementor-widget elementor-widget-ct_text_editor\\\" data-id=\\\"3c3b806\\\" data-element_type=\\\"widget\\\" data-widget_type=\\\"ct_text_editor.default\\\"><div class=\\\"elementor-widget-container\\\"><div id=\\\"ct_text_editor-3c3b806\\\" class=\\\"ct-text-editor \\\" data-wow-delay=\\\"ms\\\"><div class=\\\"ct-text-editor elementor-clearfix\\\"><p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p><p>Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/p><p>These three classic CIA cases have remained a secret until now.<\\/p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/p><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae56fb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"danger\",\"text\":\"Buy Your Copy\",\"link\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/about-the-book\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4425,5810,'_wp_page_template','default'),(4426,5810,'_elementor_edit_mode','builder'),(4427,5810,'_elementor_template_type','wp-page'),(4428,5810,'_elementor_version','2.9.7'),(4429,5810,'_elementor_data','[{\"id\":\"40fd8216\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"67\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a114ffb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"e7c34af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consulting is a law firm specialising in corporate finance work\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"About us\",\"sub_title_style\":\"style2\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"10df5e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6638bf3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"36029746\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"721a687f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work<br\\/> Development\",\"percentage_value\":80,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"2500a52d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"407fce4e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Plan<br\\/> Fulfilled\",\"percentage_value\":90,\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true},{\"id\":\"63dd35a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"50076466\",\"elType\":\"widget\",\"settings\":{\"title\":\"UI\\/UX<br\\/> Desigining\",\"chart_size\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]},\"style\":\"style2\",\"track_color\":\"#E4EAEE\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_piecharts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"431858c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"160cdc54\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/h4-about1.png\",\"id\":2725},\"image_size\":\"full\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a85a00b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"45\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5846a252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"78aad6aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to know more about us?\",\"desc\":\"Just download brochure...\",\"btn_text\":\"Download Brochure\",\"btn_icon\":{\"value\":\"fas fa-cloud-download-alt\",\"library\":\"fa-solid\"},\"btn_style\":\"btn-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"271a828\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"216aa41\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bd79acf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"284946a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e424e89\",\"elType\":\"widget\",\"settings\":{\"title\":\"We deals with many services to take extra care of your problem solutions.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Services\",\"sub_title_style\":\"style2\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"ebf2f68\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.87700000000000244426701101474463939666748046875,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e183e09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Business services is a general term that describes work that supports a business but does not produce a tangible commodity. Information technology is important.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"654682a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-edit\",\"library\":\"flaticonv2\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-partnership.png\",\"id\":3595}},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-gear\",\"library\":\"flaticonv2\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-analysis.png\",\"id\":3590},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-objective\",\"library\":\"flaticonv2\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-chart-star.png\",\"id\":3592},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-creative\",\"library\":\"flaticonv2\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-money-bag.png\",\"id\":3594},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-idea.png\",\"id\":3593},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-layers\",\"library\":\"flaticonv2\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-business.png\",\"id\":3591},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b3b2339\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-04.png\",\"id\":2125},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.88000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed81794\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.5},\"elements\":[{\"id\":\"27093372\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t misread here we have random & interesting facts.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"title_color\":\"#ffffff\",\"sub_title\":\"Funfact\",\"sub_title_color\":\"#FFFFFF\",\"sub_title_style\":\"style2\",\"sub_title_space_top\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"309772db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\\nto sell & consult.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"60671754\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"_margin\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"52\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false},{\"id\":\"3c14ed29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.5,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"196cdac9\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3374a3ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"3acc5d5a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":105,\"suffix\":\"+\",\"title\":\"Team members\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-01.jpg\",\"id\":1552},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"65\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"1f51f75f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":8,\"suffix\":\"+\",\"title\":\"Winning Awards\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-06.jpg\",\"id\":1557},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-20\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true},{\"id\":\"5489227e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"54cf5f11\",\"elType\":\"widget\",\"settings\":{\"ending_number\":215,\"suffix\":\"+\",\"title\":\"Client\\u2019s Feedback\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"-25\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"},{\"id\":\"32e87dd0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":310,\"suffix\":\"+\",\"title\":\"Completed Works\",\"show_icon\":\"\",\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"size\":\"size2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41b62b34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/bg-section-01.png\",\"id\":2056},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"5a7cd766\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"353bac17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"30b6a483\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e61afcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"139f6854\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cdda213\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73f8dd0c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"testimonial\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"4bedbf5\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\",\"_id\":\"1d1720d\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-01.jpg\",\"id\":1690},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\\nthem.\",\"_id\":\"b234799\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b2dfe23\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-author-01.jpg\",\"id\":2170},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\\nthem.\",\"_id\":\"1ed2282\",\"sub_title\":\"\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-author-02.jpg\",\"id\":2171},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\",\"_id\":\"9ebe622\",\"sub_title\":\"\"}],\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"true\",\"col_sm\":\"1\",\"col_md\":\"2\",\"ct_animate\":\"wow flipInX\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d76413c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f88cefe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"397ee275\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1066,3493,'_wp_page_template','default'),(1067,3493,'custom_header','1'),(1068,3493,'header_layout','19'),(1069,3493,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4752,3493,'h_custom_menu_right',''),(1070,3493,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4751,3493,'h_custom_menu_left',''),(1071,3493,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4750,3493,'h_custom_menu',''),(1072,3493,'page_h_phone',''),(1073,3493,'page_h_time',''),(1074,3493,'custom_pagetitle','show'),(1075,3493,'custom_title','Buy The Book'),(1076,3493,'ptitle_bg','a:2:{s:16:\"background-image\";s:62:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"5814\";s:6:\"height\";s:4:\"1080\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:70:\"https://dm117.dev34.info/wp-content/uploads/2021/05/481666-150x150.jpg\";}}'),(4753,3493,'ptitle_breadcrumb_page','themeoption'),(1077,3493,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:5:\"217px\";s:14:\"padding-bottom\";s:0:\"\";}'),(1078,3493,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1079,3493,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(1080,3493,'show_sidebar_page',''),(1081,3493,'sidebar_page_pos','right'),(1082,3493,'loading_page','themeoption'),(1083,3493,'loading_type','style1'),(1084,3493,'loading_color',''),(1085,3493,'custom_footer','0'),(1086,3493,'footer_layout_custom',''),(1087,3493,'page_back_totop','themeoption'),(1089,3493,'_elementor_edit_mode','builder'),(1090,3493,'_elementor_template_type','wp-page'),(1091,3493,'_elementor_version','3.1.4'),(1092,3493,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4567,5833,'_wp_page_template','default'),(4568,5833,'_elementor_edit_mode','builder'),(4569,5833,'_elementor_template_type','wp-page'),(4570,5833,'_elementor_version','3.1.4'),(4571,5833,'_elementor_data','[{\"id\":\"53fc2b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"30e5f8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"809e82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"fbdc553\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4527,5824,'_elementor_css','a:6:{s:4:\"time\";i:1620518206;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:2;s:7:\"Poppins\";}s:5:\"icons\";a:3:{i:0;s:10:\"flaticonv2\";i:6;s:8:\"fa-solid\";i:7;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4557,5831,'_wp_page_template','default'),(4558,5831,'_elementor_edit_mode','builder'),(4559,5831,'_elementor_template_type','wp-page'),(4560,5831,'_elementor_version','3.1.4'),(4561,5831,'_elementor_data','[{\"id\":\"92cad44\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bd8afcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"About us\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53fc2b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"30e5f8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"809e82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"fbdc553\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4529,5825,'_elementor_edit_mode','builder'),(4530,5825,'_elementor_template_type','section'),(4531,5825,'_elementor_version','3.1.4'),(4532,5826,'_elementor_edit_mode','builder'),(4533,5826,'_elementor_template_type','section'),(4534,5826,'_elementor_version','3.1.4'),(4535,5825,'_wp_page_template','default'),(4536,5825,'_elementor_data','[{\"id\":\"627d6259\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"499156e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ca9f41e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false}]'),(4537,5827,'_elementor_edit_mode','builder'),(4538,5827,'_elementor_template_type','section'),(4539,5827,'_elementor_version','3.1.4'),(4540,5827,'_wp_page_template','default'),(4541,5827,'_elementor_data','[{\"id\":\"627d6259\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"499156e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3ca9f41e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false}]'),(4542,5825,'_elementor_controls_usage','a:3:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:1;s:11:\"title_color\";i:1;s:10:\"text_align\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:30:\"sub_title_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}}}}}'),(4543,5828,'_elementor_edit_mode','builder'),(4544,5828,'_elementor_template_type','section'),(4545,5828,'_elementor_version','3.1.4'),(4546,5829,'_elementor_edit_mode','builder'),(4547,5829,'_elementor_template_type','section'),(4548,5829,'_elementor_version','3.1.4'),(4549,5828,'_wp_page_template','default'),(4550,5828,'_elementor_data','[{\"id\":\"1491d085\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b50990d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4624eb6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"32141101\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15fdd9b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"51fcfd42\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a2fec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6cf37a73\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1af7b428\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4551,5830,'_elementor_edit_mode','builder'),(4552,5830,'_elementor_template_type','section'),(4553,5830,'_elementor_version','3.1.4'),(4554,5830,'_wp_page_template','default'),(4555,5830,'_elementor_data','[{\"id\":\"1491d085\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b50990d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"4624eb6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"32141101\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"15fdd9b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"51fcfd42\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a2fec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6cf37a73\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1af7b428\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4556,5828,'_elementor_controls_usage','a:3:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:7:\"link_to\";i:4;s:4:\"link\";i:4;s:5:\"align\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(4562,5832,'_wp_page_template','default'),(4563,5832,'_elementor_edit_mode','builder'),(4564,5832,'_elementor_template_type','wp-page'),(4565,5832,'_elementor_version','3.1.4'),(4566,5832,'_elementor_data','[{\"id\":\"92cad44\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bd8afcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"About us\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53fc2b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"30e5f8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"809e82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"fbdc553\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4586,5836,'_wp_page_template','default'),(4587,5836,'_elementor_edit_mode','builder'),(4588,5836,'_elementor_template_type','wp-page'),(4589,5836,'_elementor_version','3.1.4'),(4590,5836,'_elementor_data','[{\"id\":\"53fc2b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"30e5f8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"809e82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"fbdc553\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4741,5867,'_wp_page_template','default'),(4742,5867,'_elementor_edit_mode','builder'),(4743,5867,'_elementor_template_type','wp-page'),(4744,5867,'_elementor_version','3.1.4'),(4745,5867,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4510,5822,'_wp_page_template','default'),(4511,5822,'_elementor_edit_mode','builder'),(4512,5822,'_elementor_template_type','wp-page'),(4513,5822,'_elementor_version','2.9.7'),(4514,5822,'_elementor_data','[{\"id\":\"64fd72b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"305603d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"About us\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"398fa9be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku sendeno\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"311bc37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We bring more than 24 years\\u2019 senior experience forging of\\ncollaborations across government.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ef13cfd\",\"elType\":\"widget\",\"settings\":{\"style\":\"style2\",\"list\":[{\"title\":\"\",\"content\":\"Praesent feugiat sem.\",\"_id\":\"5468f9e\"},{\"title\":\"\",\"content\":\"A wonderful serenity.\",\"_id\":\"e337312\"},{\"title\":\"\",\"content\":\"Premium services for you.\",\"_id\":\"a1fd6d3\"},{\"title\":\"\",\"content\":\"Set a link back to photo.\",\"_id\":\"7341c94\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"59\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"1fb7224d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"about-call\\\">Call to ask <a class=\\\"link-preset2\\\" href=\\\"#\\\">any question<\\/a> 540-325-1523<\\/div>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78f3a28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/about-gap.png\",\"id\":1896},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78e20b32\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/signature-02.png\",\"id\":2319},\"title\":\"Natalia Duke\",\"sub_title\":\"(Chairman and founder)\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_signature\"}],\"isInner\":false},{\"id\":\"1bb8bef0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40e6861c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/banner-01.png\",\"id\":2306},\"title\":\"24 Years of Experience\",\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38f7332b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dba3a7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"735a4111\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44317976\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e36d3ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\'re ready to share our advice and experience.\",\"sub_title\":\"Pricing\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"4edf15d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.87700000000000244426701101474463939666748046875,\"margin\":{\"unit\":\"px\",\"top\":\"030\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54c181e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The main difference between Statistic and Statistics is that the Statistic is a single measure of some attribute of a sample and Statistics is a study of the collection.\",\"text_color\":\"#383838\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21927eaa\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-edit\",\"library\":\"flaticonv2\"},\"title\":\"Tax Consultancy\",\"description\":\"This is one of many areas of\\nprofessional services where our firm is well ahead of the competition.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ad3ffd2\",\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-partnership.png\",\"id\":3595}},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-gear\",\"library\":\"flaticonv2\"},\"title\":\"Audit & assurance\",\"description\":\"People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-analysis.png\",\"id\":3590},\"_id\":\"549e205\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-objective\",\"library\":\"flaticonv2\"},\"title\":\"Value Added Tax\",\"description\":\"We are providing and dealing with all sorts of legal and professional services and matters to operate.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-chart-star.png\",\"id\":3592},\"_id\":\"c96dff0\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-creative\",\"library\":\"flaticonv2\"},\"title\":\"Accounting Services\",\"description\":\"Our professionals provide a range of accounting and assurance services of the highest standards.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-money-bag.png\",\"id\":3594},\"_id\":\"c5fa888\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-shield\",\"library\":\"flaticonv2\"},\"title\":\"Tax Outsourcing\",\"description\":\"Unlike our competitors we have in house qualified lawyers and accountants who can help you.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-idea.png\",\"id\":3593},\"_id\":\"70a20db\"},{\"ct_icon\":{\"value\":\"flaticonv2 flaticonv2-layers\",\"library\":\"flaticonv2\"},\"title\":\"Amazing Strategy\",\"description\":\"Operates an atmosphere that promote creative approach for clients needs.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-strategy\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"icon_type\":\"icon\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/icon-business.png\",\"id\":3591},\"_id\":\"838b0fb\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c752131\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"b425f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"ce65c69\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"7af3a6b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"95f59e2\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"9211325\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"58fe444\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"03068b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"202a22e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7044b92\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/about-section-01.jpg\",\"id\":3628},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43e18f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58,\"_inline_size_tablet\":90},\"elements\":[{\"id\":\"b570126\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Our Value\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">We Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"91aeee6\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Our Mission\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">Our professionals provide a range of accounting and assurance services of the highest standards.<\\/div>\\n\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"8303bab\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Payroll Service\",\"content_type\":\"text_editor\",\"tab_content\":\"<div class=\\\"tab-sub\\\">People are only as good as the tools they possess. So, to consistently deliver high-quality auditing.<\\/div>\\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\",\"tab_content_template\":\"\",\"_id\":\"bdab1d1\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"tab_type\":\"vertical\",\"title_color_type\":\"#FFFFFF\",\"content_color_type\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false},{\"id\":\"c7ad8c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.96000000000000085265128291212022304534912109375,\"_inline_size_tablet\":10},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"78e91ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"81\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"918186f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"1ab16bbd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We draw on our global network to\\nassemble a team of experts.\",\"sub_title\":\"Team\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"8c051a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"d62d9b3\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a676f2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"d088f8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38dd266\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51a18258\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ca2bbec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f546273\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#F0F0F1\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"64\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"168b53c2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1094,3493,'p_page_title_color',''),(1095,3493,'ptitle_overlay','themeoption'),(4756,5784,'_wp_old_date','2021-04-03'),(1097,3495,'_wp_page_template','default'),(1098,3495,'custom_header','1'),(1099,3495,'header_layout','2'),(1100,3495,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1101,3495,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1102,3495,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1103,3495,'page_h_phone',''),(1104,3495,'page_h_time',''),(1105,3495,'custom_pagetitle','show'),(1106,3495,'custom_title','About us'),(1107,3495,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1108,3495,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"217px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1109,3495,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1110,3495,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1111,3495,'show_sidebar_page',''),(1112,3495,'sidebar_page_pos','right'),(1113,3495,'loading_page','themeoption'),(1114,3495,'loading_type','style1'),(1115,3495,'loading_color',''),(1116,3495,'custom_footer','0'),(1117,3495,'footer_layout_custom',''),(1118,3495,'page_back_totop','themeoption'),(1119,3495,'slide_template','default'),(1120,3495,'_elementor_edit_mode','builder'),(1121,3495,'_elementor_template_type','wp-page'),(1122,3495,'_elementor_version','2.9.7'),(1123,3495,'_elementor_data','[{\"id\":\"de5dcd5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#F4F4F4\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/about4-bg-section1.png\",\"id\":3669},\"padding\":{\"unit\":\"px\",\"top\":\"95\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38d98e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fcdca76\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/about4-icon1.png\",\"id\":3663},\"title_text\":\"Business Growth\",\"description_text\":\"The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"2c21843\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc207a7\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/about4-icon2.png\",\"id\":3664},\"title_text\":\"Strategy Process\",\"description_text\":\"The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"80ee074\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a9d6069\",\"elType\":\"widget\",\"settings\":{\"layout\":\"6\",\"icon_type\":\"image\",\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/about4-icon3.png\",\"id\":3665},\"title_text\":\"Finance Manage\",\"description_text\":\"The argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/service\\/business-consulting\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bca8448\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"72\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"8630a61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5ab3233\",\"elType\":\"widget\",\"settings\":{\"title\":\"We are here to manage your finance with <i>experience<\\/i>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title\":\"about us\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"sub_title_typography_text_transform\":\"uppercase\",\"sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"27\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"14\",\"bottom\":\"0\",\"left\":\"14\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"12e6001\",\"elType\":\"widget\",\"settings\":{\"content_list\":[{\"particle\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/about4-shape1.png\",\"id\":3681},\"particle_animate\":\"animate-none\",\"top_positioon\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"_id\":\"29d6673\"}]},\"elements\":[],\"widgetType\":\"ct_particle_animate\"},{\"id\":\"942af5f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"80813fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a3c8047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h4-about1.png\",\"id\":3679},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f269e39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"de663bd\",\"elType\":\"widget\",\"settings\":{\"progressbar_list\":[{\"title\":\"Finance\",\"percent\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"_id\":\"36ee43c\"},{\"title\":\"Business\",\"percent\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"_id\":\"48a4889\"},{\"title\":\"Investment\",\"percent\":{\"unit\":\"%\",\"size\":93,\"sizes\":[]},\"_id\":\"fdae678\"}],\"layout\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"53\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_progressbar\"},{\"id\":\"39ccfa7\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The argument in favor of using filler text goes something like this: If you use real content in the <b><u>design process<\\/u><\\/b>, anytime you reach a review point you\\u2019ll end up reviewing and negotiating the content itself and not the design.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"26\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7206656\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"\\nAenean tincidunt id mauris id auctor. Donec at ligula lacus. Nulla dignissim mi quis neque interdum, quis porta sem finibus.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a46ffb5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e67a90\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0336159\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\"},\"elements\":[{\"id\":\"9559d14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"7aad221\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.33200000000000073896444519050419330596923828125,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"36\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"fd46c38\",\"elType\":\"widget\",\"settings\":{\"title\":\"See how we work with\\ntouch of <i>experience<\\/i>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title\":\"Video\",\"sub_title_color\":\"#FFFFFF\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"sub_title_typography_text_transform\":\"uppercase\",\"sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"020\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"3d043c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"f0564eb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=SF4aHwxHtZ0\",\"ct_animate\":\"wow fadeInUp\",\"_css_classes\":\"text-center\"},\"elements\":[],\"widgetType\":\"ct_video_player\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4ee903\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8351f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b931bb1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6844e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"16\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"512d7c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"There are many companies\\nbut why <i>choose us<\\/i>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title\":\"Why choose us\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"sub_title_typography_text_transform\":\"uppercase\",\"sub_title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"left\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"9a78b44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"b70c597\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"The argument in favor of using filler text goes something like this: If you use real content in the design process, anytime you reach a review point you\\u2019ll end up reviewing and negotiating the content itself.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"32\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bc1417d\",\"elType\":\"widget\",\"settings\":{\"active_tab\":3,\"tabs\":[{\"tab_title\":\"Expert team\",\"tab_content\":\"The argument in favorite of using filler to text goes some thing like this top\",\"banner\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-02.jpg\",\"id\":1531},\"_id\":\"ce4f709\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"}},{\"tab_title\":\"Best Finance Brand\",\"tab_content\":\"The argument in favorite of using filler to text goes some thing like this top\",\"banner\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\",\"id\":1534},\"_id\":\"a8a721c\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"}},{\"tab_title\":\"Best Leadership Ideas\",\"tab_content\":\"The argument in favorite of using filler to text goes some thing like this top\",\"banner\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-10.jpg\",\"id\":1539},\"_id\":\"a1fe66a\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"}}]},\"elements\":[],\"widgetType\":\"ct_tab_banner\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16733087\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d57564b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8992f4e\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#F0F0F1\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39845ef8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1124,3495,'_elementor_controls_usage','a:12:{s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:2:{s:6:\"layout\";i:3;s:10:\"ct_animate\";i:3;}}s:7:\"content\";a:1:{s:15:\"section_content\";a:5:{s:9:\"icon_type\";i:3;s:10:\"icon_image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:4:\"link\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:13;s:19:\"_inline_size_tablet\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:13:\"margin_mobile\";i:2;s:6:\"margin\";i:3;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:7;s:15:\"stretch_section\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:5;s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:5:{s:5:\"title\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_line_height\";i:3;s:11:\"title_color\";i:1;}s:17:\"sub_title_section\";a:9:{s:9:\"sub_title\";i:3;s:31:\"sub_title_typography_typography\";i:3;s:30:\"sub_title_typography_font_size\";i:3;s:35:\"sub_title_typography_text_transform\";i:3;s:32:\"sub_title_typography_line_height\";i:3;s:35:\"sub_title_typography_letter_spacing\";i:3;s:22:\"sub_title_space_bottom\";i:3;s:14:\"sub_title_line\";i:3;s:15:\"sub_title_color\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:8:\"_padding\";i:3;s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:2;s:15:\"_padding_mobile\";i:1;}}}}s:19:\"ct_particle_animate\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:1:{s:12:\"content_list\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:14:\"ct_progressbar\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:16:\"progressbar_list\";i:1;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:15:\"ct_video_player\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"icon_section\";a:3:{s:5:\"image\";i:1;s:10:\"video_link\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:13:\"ct_tab_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:10:\"active_tab\";i:1;s:4:\"tabs\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(1125,3495,'p_page_title_color',''),(1126,3495,'ptitle_overlay','themeoption'),(1127,3495,'rs_page_bg_color','#ffffff'),(1128,3497,'_wp_page_template','default'),(1129,3497,'custom_header','1'),(1130,3497,'header_layout','2'),(1131,3497,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1132,3497,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1133,3497,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1134,3497,'page_h_phone',''),(1135,3497,'page_h_time',''),(1136,3497,'custom_pagetitle','show'),(1137,3497,'custom_title','Testimonials'),(1138,3497,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1139,3497,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"217px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1140,3497,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1141,3497,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1142,3497,'show_sidebar_page',''),(1143,3497,'sidebar_page_pos','right'),(1144,3497,'loading_page','themeoption'),(1145,3497,'loading_type','style1'),(1146,3497,'loading_color',''),(1147,3497,'custom_footer','0'),(1148,3497,'footer_layout_custom',''),(1149,3497,'page_back_totop','themeoption'),(1150,3497,'slide_template','default'),(1151,3497,'_elementor_edit_mode','builder'),(1152,3497,'_elementor_template_type','wp-page'),(1153,3497,'_elementor_version','2.8.5'),(1154,3497,'_elementor_data','[{\"id\":\"c89f3b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2687c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3010a357\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"37\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7e1e7a31\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2d328236\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"734d13ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b96728d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e1f2d9\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"195eecf\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"cd84e60\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b63d25b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Maria Silverii\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"525775b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Phillip Macintyre\",\"position\":\"CEO of Blue Illusion\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"1b90e55\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"b6453f9\"}],\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"8a6d9b9\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50718662\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/theme23.jpg\",\"id\":3614},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"320475e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"79a188fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"css_classes\":\"col-offset-right\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e1ca7ac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":108,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c91988f\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Like What We Offer\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"color-gradient-from\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"58f371a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"DO BUSINESS<br\\/>\\nWITH US!\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"512dec0\",\"elType\":\"widget\",\"settings\":{\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_editor\":\"In order to acquire our services please kindly send us your inquiry of interest. We shall revert back\\nimmediately.\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"3a02cad5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"btn_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"02\",\"right\":\"36\",\"bottom\":\"2\",\"left\":\"36\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"},{\"id\":\"102df0b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cc1ab47\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4780c367\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"17cd84b8\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1155,3497,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:11:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:33:\"title_typography_font_size_tablet\";i:2;s:28:\"title_typography_line_height\";i:2;s:35:\"title_typography_line_height_tablet\";i:2;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;s:11:\"title_color\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:11:\"css_classes\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:1:{s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:4:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:8:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:11:\"btn_padding\";i:2;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:2;s:8:\"btn_icon\";i:1;s:10:\"icon_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:2;s:12:\"_css_classes\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1156,3497,'p_page_title_color',''),(1157,3497,'ptitle_overlay','themeoption'),(1158,3497,'rs_page_bg_color','#ffffff'),(1159,3500,'_wp_page_template','default'),(1160,3500,'custom_header','1'),(1161,3500,'header_layout','2'),(1162,3500,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1163,3500,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1164,3500,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1165,3500,'page_h_phone',''),(1166,3500,'page_h_time',''),(1167,3500,'custom_pagetitle','show'),(1168,3500,'custom_title','Testimonials'),(1169,3500,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1170,3500,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1171,3500,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1172,3500,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1173,3500,'show_sidebar_page',''),(1174,3500,'sidebar_page_pos','right'),(1175,3500,'loading_page','themeoption'),(1176,3500,'loading_type','style1'),(1177,3500,'loading_color',''),(1178,3500,'custom_footer','0'),(1179,3500,'footer_layout_custom',''),(1180,3500,'page_back_totop','themeoption'),(1181,3500,'slide_template','default'),(1182,3500,'_elementor_edit_mode','builder'),(1183,3500,'_elementor_template_type','wp-page'),(1184,3500,'_elementor_version','2.8.5'),(1185,3500,'_elementor_data','[{\"id\":\"37b0d9e8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e28c4af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7dfaa5c3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"43\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"219b9a38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15ba6390\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"50757a0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ad2eb45\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"19ba640c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"7b31aa02\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"16c849ad\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"760b3a46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"39e31d8c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1186,3500,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1187,3500,'p_page_title_color',''),(1188,3500,'ptitle_overlay','themeoption'),(1189,3500,'rs_page_bg_color','#ffffff'),(1190,3502,'_wp_page_template','default'),(1191,3502,'custom_header','1'),(1192,3502,'header_layout','2'),(1193,3502,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1194,3502,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1195,3502,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1196,3502,'page_h_phone',''),(1197,3502,'page_h_time',''),(1198,3502,'custom_pagetitle','show'),(1199,3502,'custom_title','Testimonials'),(1200,3502,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1201,3502,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1202,3502,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1203,3502,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1204,3502,'show_sidebar_page',''),(1205,3502,'sidebar_page_pos','right'),(1206,3502,'loading_page','themeoption'),(1207,3502,'loading_type','style1'),(1208,3502,'loading_color',''),(1209,3502,'custom_footer','0'),(1210,3502,'footer_layout_custom',''),(1211,3502,'page_back_totop','themeoption'),(1212,3502,'slide_template','default'),(1213,3502,'_elementor_edit_mode','builder'),(1214,3502,'_elementor_template_type','wp-page'),(1215,3502,'_elementor_version','2.8.5'),(1216,3502,'_elementor_data','[{\"id\":\"2951602\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"641bb4e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3d76e6b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\",\"content_position\":\"middle\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"63\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4429daa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d999afc\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\\u2019s always a joy to hear that the work we do, has positively reviews.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sub_title\":\"Testimonial\",\"sub_title_style\":\"style2\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"sub_title_space_top_mobile\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7aa83023\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1011a43d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We have spent 9 years working for one of Australia\\u2019s most\\nrecognised and successful retailers so we have many good\\nreview of works.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467b22a1\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Amy Harrison\",\"position\":\"Contiki Holidays\",\"description\":\"I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24\\/24.\",\"_id\":\"a6d92dd\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-07.jpg\",\"id\":1656},\"title\":\"Donald Johnson\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"3322b8b\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-01.jpg\",\"id\":397},\"title\":\"Kathleen Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"64c9764\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/testimonial-09.jpg\",\"id\":1658},\"title\":\"Jewel D Smith\",\"position\":\"Executive Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-whatsapp\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"88f603e\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-04.jpg\",\"id\":400},\"title\":\"Brad Smith\",\"position\":\"SEO Manager\",\"description\":\"I had the pleasure of working with Consultio as part of a \\n6 month \\u2018Regional Retail Leadership Program\\u2019. Her passion for leadership development is evident to help others.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-twitter-square\\\",\\\"url\\\":\\\"\\\"}]\",\"_id\":\"729ef29\"}],\"col_sm\":\"1\"},\"elements\":[],\"widgetType\":\"ct_testimonial_grid\"},{\"id\":\"27a621ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more \",\"align\":\"center\",\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/testimonials\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a3a5553\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"48\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"34481d3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10f93096\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1217,3502,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;s:10:\"ct_animate\";i:1;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:35:\"sub_title_typography_letter_spacing\";i:1;s:26:\"sub_title_space_top_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:19:\"ct_testimonial_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:3:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_sm\";i:1;}s:13:\"section_list3\";a:1:{s:13:\"content_list3\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:11:\"btn_padding\";i:1;s:17:\"btn_border_radius\";i:1;s:10:\"ct_animate\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1218,3502,'p_page_title_color',''),(1219,3502,'ptitle_overlay','themeoption'),(1220,3502,'rs_page_bg_color','#ffffff'),(1221,3504,'_wp_page_template','default'),(1222,3504,'custom_header','1'),(1223,3504,'header_layout','6'),(1224,3504,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1225,3504,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1226,3504,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1227,3504,'page_h_phone','(210) 123-451'),(1228,3504,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1229,3504,'custom_pagetitle','show'),(1230,3504,'custom_title','Pricing'),(1231,3504,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1542\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13-150x150.jpg\";}}'),(1232,3504,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(1233,3504,'content_bg_color','a:3:{s:5:\"color\";s:7:\"#faf7f0\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(250,247,240,1)\";}'),(1234,3504,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1235,3504,'show_sidebar_page',''),(1236,3504,'sidebar_page_pos','right'),(1237,3504,'loading_page','themeoption'),(1238,3504,'loading_type','style1'),(1239,3504,'loading_color',''),(1240,3504,'custom_footer','0'),(1241,3504,'footer_layout_custom',''),(1242,3504,'page_back_totop','themeoption'),(1243,3504,'slide_template','default'),(1244,3504,'_elementor_edit_mode','builder'),(1245,3504,'_elementor_template_type','wp-page'),(1246,3504,'_elementor_version','2.8.5'),(1247,3504,'_elementor_data','[{\"id\":\"729d3801\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"67\",\"right\":0,\"bottom\":\"34\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"722c279c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"198f4d0f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best price for you!\",\"sub_title\":\"Pricing\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"700\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"style\":\"st-line-left3\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6ddd7a0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ab9c7ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Pricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the\\nbusiness\'s marketing plan.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3cf44a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"2b5a8902\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7d4608fc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Monthly\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3876\",\"_id\":\"c8e97fc\"},{\"tab_title\":\"Yearly <span>Save 20%<\\/span>\",\"content_type\":\"template\",\"tab_content\":\"Tab Content\",\"tab_content_template\":\"3872\",\"_id\":\"6de80c2\"}],\"tab_style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a8e4982\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"35533b12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2e67feab\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1248,3504,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:5:\"style\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:2;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:2:{s:4:\"tabs\";i:1;s:9:\"tab_style\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1249,3504,'p_page_title_color',''),(1250,3504,'ptitle_overlay','themeoption'),(1251,3504,'rs_page_bg_color','#ffffff'),(1252,3506,'_wp_page_template','default'),(1253,3506,'_elementor_controls_usage','a:0:{}'),(1254,3506,'custom_header',''),(1255,3506,'header_layout','1'),(1256,3506,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1257,3506,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1258,3506,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1259,3506,'page_h_phone',''),(1260,3506,'page_h_time',''),(1261,3506,'custom_pagetitle','themeoption'),(1262,3506,'custom_title',''),(1263,3506,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1264,3506,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1265,3506,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1266,3506,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1267,3506,'show_sidebar_page',''),(1268,3506,'sidebar_page_pos','right'),(1269,3506,'loading_page','themeoption'),(1270,3506,'loading_type','style1'),(1271,3506,'loading_color',''),(1272,3506,'custom_footer',''),(1273,3506,'footer_layout_custom',''),(1274,3506,'page_back_totop','themeoption'),(1275,3506,'slide_template','default'),(1276,3508,'_wp_page_template','default'),(1277,3508,'_elementor_controls_usage','a:0:{}'),(1278,3508,'custom_header',''),(1279,3508,'header_layout','1'),(1280,3508,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1281,3508,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1282,3508,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1283,3508,'page_h_phone',''),(1284,3508,'page_h_time',''),(1285,3508,'custom_pagetitle','themeoption'),(1286,3508,'custom_title',''),(1287,3508,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1288,3508,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1289,3508,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1290,3508,'content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1291,3508,'show_sidebar_page',''),(1292,3508,'sidebar_page_pos','right'),(1293,3508,'loading_page','themeoption'),(1294,3508,'loading_type','style1'),(1295,3508,'loading_color',''),(1296,3508,'custom_footer',''),(1297,3508,'footer_layout_custom',''),(1298,3508,'page_back_totop','themeoption'),(1299,3508,'slide_template','default'),(1300,3510,'_wp_page_template','default'),(1301,3510,'custom_header',''),(1302,3510,'header_layout','1'),(1303,3510,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1304,3510,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1305,3510,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1306,3510,'page_h_phone',''),(1307,3510,'page_h_time',''),(1308,3510,'custom_pagetitle','show'),(1309,3510,'custom_title','Contact'),(1310,3510,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1311,3510,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1312,3510,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1313,3510,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1314,3510,'show_sidebar_page',''),(1315,3510,'sidebar_page_pos','right'),(1316,3510,'loading_page','themeoption'),(1317,3510,'loading_type','style1'),(1318,3510,'loading_color',''),(1319,3510,'custom_footer',''),(1320,3510,'footer_layout_custom',''),(1321,3510,'page_back_totop','themeoption'),(1322,3510,'slide_template','default'),(1323,3510,'_elementor_edit_mode','builder'),(1324,3510,'_elementor_template_type','wp-page'),(1325,3510,'_elementor_version','2.9.13'),(1326,3510,'_elementor_data','[{\"id\":\"1ef182c3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9499999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"566b9921\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4ef0cfbf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"13\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7758a428\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"2df05f23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch for any kind of help and informations\",\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\",\"ct_animate\":\"wow fadeInLeft\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"63bcdcfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c6d7533\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_css_classes\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fc27fd7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"68\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37ecd392\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"34\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"60636a70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Our head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"18b7ca15\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"1b301a3e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail us for information\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"layout\":\"3\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"2c6b7216\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"13694b3f\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5003\",\"style_l1\":\"style3\",\"ct_animate\":\"wow fadeInRight\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dd756b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"eda45db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d29b35\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(1327,3510,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:9:{s:5:\"title\";i:1;s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;s:10:\"ct_animate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:4;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:21:\"background_attachment\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}s:13:\"section_style\";a:1:{s:10:\"ct_animate\";i:3;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;s:10:\"ct_animate\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}}'),(1328,3512,'_wp_page_template','default'),(1329,3512,'custom_header','1'),(1330,3512,'header_layout','2'),(1331,3512,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1332,3512,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1333,3512,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1334,3512,'page_h_phone',''),(1335,3512,'page_h_time',''),(1336,3512,'custom_pagetitle','show'),(1337,3512,'custom_title','Contact'),(1338,3512,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1339,3512,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1340,3512,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1341,3512,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1342,3512,'show_sidebar_page',''),(1343,3512,'sidebar_page_pos','right'),(1344,3512,'loading_page','themeoption'),(1345,3512,'loading_type','style1'),(1346,3512,'loading_color',''),(1347,3512,'custom_footer','0'),(1348,3512,'footer_layout_custom',''),(1349,3512,'page_back_totop','themeoption'),(1350,3512,'slide_template','default'),(1351,3512,'_elementor_edit_mode','builder'),(1352,3512,'_elementor_template_type','wp-page'),(1353,3512,'_elementor_version','2.8.5'),(1354,3512,'_elementor_data','[{\"id\":\"35ebeef\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#EFF1FF\",\"padding\":{\"unit\":\"px\",\"top\":\"76\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c27832\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b5f7aa2\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"sub_title\":\"Contact us\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6cc7ca20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"34\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"5fc35b57\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"},{\"id\":\"7087f74b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"dfda162\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76be961\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"For any inquiries relating to my  Retail and Leadership Programs*\",\"align\":\"left\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"7ec43f27\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3823\",\"style_l1\":\"style5\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47f4644d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"307e508\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2f684d1c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1355,3512,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:8:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;s:15:\"_padding_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1356,3512,'p_page_title_color',''),(1357,3512,'ptitle_overlay','themeoption'),(1358,3512,'rs_page_bg_color','#ffffff'),(1359,569,'slide_template','default'),(1360,569,'portfolio_sub_title','Plan Estimations'),(1361,569,'_wp_page_template','default'),(1362,569,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1363,569,'_elementor_edit_mode','builder'),(1364,569,'_elementor_template_type','wp-post'),(1365,569,'_elementor_version','2.7.5'),(1366,569,'_elementor_data','[{\"id\":\"1ef46e13\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"767baefc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20c4bd9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"4d2f320e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b770116\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"100163c6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67225c89\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"411b8936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-12.jpg\",\"id\":1541},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2b8bdd35\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bf80737\",\"elType\":\"widget\",\"settings\":{\"title\":\"Fund Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"65162c9b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ed4b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f51c582\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46012a39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6cb5cf64\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"64fa3143\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1367,569,'_wp_old_slug','rupayan-taj'),(1368,569,'_thumbnail_id','1541'),(1369,569,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1370,571,'slide_template','default'),(1371,571,'portfolio_sub_title','Exterior Design'),(1372,571,'_wp_page_template','default'),(1373,571,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1374,571,'_elementor_edit_mode','builder'),(1375,571,'_elementor_template_type','wp-post'),(1376,571,'_elementor_version','2.7.5'),(1377,571,'_elementor_data','[{\"id\":\"277bf312\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc56f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"624674ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"340c8a4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c9ecac7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51426840\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"67eae2ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"303d0652\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\",\"id\":1538},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"141dc37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb2aea0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Financial Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"141fe9f9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"747aff36\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e895bd\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10eb7f3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"efe11f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6ac9c126\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1378,571,'_wp_old_slug','razia-tower'),(1379,571,'_thumbnail_id','1538'),(1380,571,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1381,573,'slide_template','default'),(1382,573,'portfolio_sub_title','Plan Certification'),(1383,573,'_wp_page_template','default'),(1384,573,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1385,573,'_elementor_edit_mode','builder'),(1386,573,'_elementor_template_type','wp-post'),(1387,573,'_elementor_version','2.7.5'),(1388,573,'_elementor_data','[{\"id\":\"57ce9589\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"71b35ef3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6681b63f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"391d5678\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"391b9f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29b45b4c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31b2a3a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"72434400\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\",\"id\":1536},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"335ce718\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"645505c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Market Expansion\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68730ac3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9e6a449\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"678da7c9\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"476936cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880b368\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"41c2b24b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1389,573,'_wp_old_slug','fr-tower'),(1390,573,'_thumbnail_id','1536'),(1391,573,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1392,575,'slide_template',''),(1393,575,'portfolio_sub_title','Property Sketching'),(1394,575,'_wp_page_template','default'),(1395,575,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1396,575,'_elementor_edit_mode','builder'),(1397,575,'_elementor_template_type','wp-post'),(1398,575,'_elementor_version','2.7.5'),(1399,575,'_elementor_data','[{\"id\":\"1f47c785\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"795b4afe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17d7a8db\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"273c1c4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"41bca8c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c1485b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"55e67225\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c35b751\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-06.jpg\",\"id\":1535},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3ac734f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1819ba63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Revenue Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36279b37\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2220d351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8d838b\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4093c7be\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43083958\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1c0c4bc5\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1400,575,'_wp_old_slug','rio-villa'),(1401,575,'_thumbnail_id','4805'),(1402,575,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1403,575,'custom_pagetitle','themeoption'),(1404,575,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1405,575,'p_page_title_color',''),(1406,575,'ptitle_overlay','themeoption'),(1407,575,'ptitle_breadcrumb','themeoption'),(1408,575,'rs_page_bg_color',''),(1409,577,'slide_template','default'),(1410,577,'portfolio_sub_title','Material Supply'),(1411,577,'_wp_page_template','default'),(1412,577,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1413,577,'_elementor_edit_mode','builder'),(1414,577,'_elementor_template_type','wp-post'),(1415,577,'_elementor_data','[{\"id\":\"1dfbc5d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a482228\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ab965a0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7f52b03a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b8ece51\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70d2235d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbed3b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"925f00f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\",\"id\":1534},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"43c59fe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5573d38c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Court Imperial\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"187f95bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56a74858\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fb27f40\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1afe2c89\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"11319ede\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"92f0806\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1416,577,'_elementor_version','2.7.5'),(1417,577,'_thumbnail_id','1534'),(1418,577,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1419,579,'slide_template',''),(1420,579,'post_views_count','2'),(1421,579,'portfolio_sub_title','House Remodel'),(1422,579,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1423,579,'_elementor_edit_mode','builder'),(1424,579,'_elementor_template_type','wp-post'),(1425,579,'_elementor_version','2.7.5'),(1426,579,'_wp_page_template','default'),(1427,579,'_elementor_data','[{\"id\":\"5082f78d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b5819a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44d39aa7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"19f72c29\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"5514f494\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"105945eb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3b933b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66ab5385\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-04.jpg\",\"id\":1533},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2519c386\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7890d411\",\"elType\":\"widget\",\"settings\":{\"title\":\"Data Analytics\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1a9d30b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb90524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a4abaa5\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2020\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.consultio.com\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64729566\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36235ad3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"302e5231\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1428,579,'_wp_old_slug','city-centre'),(1429,579,'_thumbnail_id','4804'),(1430,579,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1431,579,'custom_pagetitle','themeoption'),(1432,579,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1433,579,'p_page_title_color',''),(1434,579,'ptitle_overlay','themeoption'),(1435,579,'ptitle_breadcrumb','themeoption'),(1436,579,'rs_page_bg_color',''),(1437,579,'_wp_old_date','2019-11-16'),(1438,579,'_wp_old_date','2019-12-16'),(1439,581,'slide_template',''),(1440,581,'post_views_count','3'),(1441,581,'portfolio_sub_title','Plan Estimations'),(1442,581,'_wp_page_template','default'),(1443,581,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1444,581,'_elementor_edit_mode','builder'),(1445,581,'_elementor_template_type','wp-post'),(1446,581,'_elementor_version','2.7.5'),(1447,581,'_elementor_data','[{\"id\":\"fd2936\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d117fd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6728f356\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"37246f52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"20294c52\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ad3f94b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f2abeab\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b712b50\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-03.jpg\",\"id\":1532},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3abbf614\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"25d31227\",\"elType\":\"widget\",\"settings\":{\"title\":\"Chan Agency\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"30a0ede6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"334c2cd8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"287cdf86\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33f9eafa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"74e7fa37\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f015042\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1448,581,'_wp_old_slug','borak-mehnur'),(1449,581,'_thumbnail_id','1536'),(1450,581,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1451,581,'custom_pagetitle','themeoption'),(1452,581,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1453,581,'p_page_title_color',''),(1454,581,'ptitle_overlay','themeoption'),(1455,581,'ptitle_breadcrumb','themeoption'),(1456,581,'rs_page_bg_color',''),(1457,581,'ptitle_breadcrumb_page','themeoption'),(1458,1738,'_wp_page_template','default'),(1459,1738,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1460,1738,'portfolio_sub_title',''),(1461,1738,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1462,1738,'slide_template','default'),(1463,1738,'_wp_old_date','2019-12-03'),(1464,1738,'_thumbnail_id','1543'),(1465,1738,'_elementor_edit_mode','builder'),(1466,1738,'_elementor_template_type','wp-post'),(1467,1738,'_elementor_version','2.7.5'),(1468,1738,'_elementor_data','[{\"id\":\"4cc8a858\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a9bf111\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1dacb188\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"29c0a65\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"28ccba79\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"364c6a73\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"121febed\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74bd74cc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-14.jpg\",\"id\":1543},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"33db605f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b1ad1e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consumer Products\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"588e191\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"356281be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4caa3bf3\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6d2447a2\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ae03e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34a7476f\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1469,1740,'_wp_page_template','default'),(1470,1740,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1471,1740,'portfolio_sub_title',''),(1472,1740,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1473,1740,'slide_template','default'),(1474,1740,'_wp_old_date','2019-12-03'),(1475,1740,'_thumbnail_id','1542'),(1476,1740,'_elementor_edit_mode','builder'),(1477,1740,'_elementor_template_type','wp-post'),(1478,1740,'_elementor_version','2.7.5'),(1479,1740,'_elementor_data','[{\"id\":\"43507583\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1cf40545\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4c8c08\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"6d7538c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d10b19e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32acc966\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a4ca7b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"700a2a24\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-13.jpg\",\"id\":1542},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e4e5ba7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68b48f5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Management\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"68c26d42\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ccdfb2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"31d7d807\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f447e11\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"432e9342\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"69919d4b\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1480,1742,'_wp_page_template','default'),(1481,1742,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1482,1742,'portfolio_sub_title',''),(1483,1742,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1484,1742,'slide_template',''),(1485,1742,'_thumbnail_id','1538'),(1486,1742,'_elementor_edit_mode','builder'),(1487,1742,'_elementor_template_type','wp-post'),(1488,1742,'_elementor_version','2.7.5'),(1489,1742,'_elementor_data','[{\"id\":\"33631ddb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64d9501e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a1db4ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"e9611ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"2236e97b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"630f7823\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5851b0a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"21fe0299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"666172d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49eb497\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Growth\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"29b73151\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5e998dc5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f16b749\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a4e8bca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dc2cbfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5fdb4fd3\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1490,1742,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team4-150x150.jpg\";}}'),(1491,1742,'custom_pagetitle','themeoption'),(1492,1742,'ptitle_breadcrumb_on','hidden'),(1493,1742,'rs_page_bg_color',''),(1494,1742,'ptitle_breadcrumb','themeoption'),(1495,1742,'p_page_title_color',''),(1496,1742,'ptitle_overlay','themeoption'),(1497,1742,'ptitle_breadcrumb_page','themeoption'),(1498,1766,'_thumbnail_id','1537'),(1499,1766,'_wp_page_template','default'),(1500,1766,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1501,1766,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1502,1766,'slide_template',''),(1503,1766,'_wp_old_date','2019-12-03'),(1504,1766,'_elementor_edit_mode','builder'),(1505,1766,'_elementor_template_type','wp-post'),(1506,1766,'_elementor_version','2.7.5'),(1507,1766,'_elementor_data','[{\"id\":\"5bba157\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7bbc1efb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d608d10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"58fafd73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d5571d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5988917e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2fc73221\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3caff8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-08.jpg\",\"id\":1537},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5f41740e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"288149d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"StartUp Business\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"78cd2015\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5fb53d40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3c379\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25631488\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"59578091\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a06c1f7\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1508,3514,'_wp_page_template','default'),(1509,3514,'custom_header','1'),(1510,3514,'header_layout','2'),(1511,3514,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1512,3514,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1513,3514,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1514,3514,'page_h_phone',''),(1515,3514,'page_h_time',''),(1516,3514,'custom_pagetitle','show'),(1517,3514,'custom_title','Contact'),(1518,3514,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1519,3514,'ptitle_padding','a:3:{s:11:\"padding-top\";s:5:\"215px\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1520,3514,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1521,3514,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1522,3514,'show_sidebar_page',''),(1523,3514,'sidebar_page_pos','right'),(1524,3514,'loading_page','themeoption'),(1525,3514,'loading_type','style1'),(1526,3514,'loading_color',''),(1527,3514,'custom_footer','0'),(1528,3514,'footer_layout_custom',''),(1529,3514,'page_back_totop','themeoption'),(1530,3514,'slide_template','default'),(1531,3514,'_elementor_edit_mode','builder'),(1532,3514,'_elementor_template_type','wp-page'),(1533,3514,'_elementor_version','2.8.5'),(1534,3514,'_elementor_data','[{\"id\":\"b8e8f06\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#EFF1FF\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe1e58\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f73164\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5439fa0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d2df7f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"If need any info please contact <b>us!<\\/b>\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"sub_title\":\"Contact us\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5608330\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e04378\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We\\u2019re glad to discuss your organisation\\u2019s situation. So please contact us via the details below, or enter your request.\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d588bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"26cfc40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0e6c99b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/contact-v4.png\",\"id\":3852},\"image_size\":\"full\",\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6aabbe9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fcf68f5\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"3851\",\"style_l1\":\"style6\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cd0cd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6311a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":42,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35},\"elements\":[{\"id\":\"7919d61\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-map\",\"library\":\"flaticon\"},\"title_text\":\"Our office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount of\\nPleasant, SC, 29466, Australia.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"afcc50c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.5,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34},\"elements\":[{\"id\":\"58fd7df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-black-back-closed-envelope-shape\",\"library\":\"flaticon\"},\"title_text\":\"Mail us:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@company.com\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a765942\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":23.809999999999998721023075631819665431976318359375,\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":31},\"elements\":[{\"id\":\"a3fa63d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"flaticon flaticon-telephone\",\"library\":\"flaticon\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#000001\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"140a6e2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\"},\"elements\":[{\"id\":\"1e8ac48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"38199f0\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":370,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17e30d6b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"48\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"24beb30f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"154bb2e2\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1535,3514,'_elementor_controls_usage','a:9:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:6:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:6;s:16:\"content_position\";i:2;s:15:\"stretch_section\";i:2;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:3;s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:3:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;s:16:\"icon_size_tablet\";i:3;}s:21:\"section_style_content\";a:9:{s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_map_style\";a:2:{s:22:\"css_filters_css_filter\";i:1;s:20:\"css_filters_saturate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1536,3514,'p_page_title_color',''),(1537,3514,'ptitle_overlay','themeoption'),(1538,3514,'rs_page_bg_color','#ffffff'),(1539,3516,'_wp_page_template','default'),(1540,3516,'custom_header','1'),(1541,3516,'header_layout','6'),(1542,3516,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1543,3516,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1544,3516,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1545,3516,'page_h_phone','(210) 123-451'),(1546,3516,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1547,3516,'custom_pagetitle','show'),(1548,3516,'custom_title','Team'),(1549,3516,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1550,3516,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"74px\";s:14:\"padding-bottom\";s:4:\"74px\";s:5:\"units\";s:2:\"px\";}'),(1551,3516,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1552,3516,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1553,3516,'show_sidebar_page',''),(1554,3516,'sidebar_page_pos','right'),(1555,3516,'loading_page','themeoption'),(1556,3516,'loading_type','style1'),(1557,3516,'loading_color',''),(1558,3516,'custom_footer','0'),(1559,3516,'footer_layout_custom',''),(1560,3516,'page_back_totop','themeoption'),(1561,3516,'slide_template','default'),(1562,3516,'_elementor_edit_mode','builder'),(1563,3516,'_elementor_template_type','wp-page'),(1564,3516,'_elementor_version','2.8.5'),(1565,3516,'_elementor_data','[{\"id\":\"de32beb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"02fe18d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50aea1e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our expert team members\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"sub_title_typography_font_weight\":\"700\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sub_title_line\":\"hide\",\"text_align\":\"center\",\"style\":\"st-line-left2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"5da4fc80\",\"elType\":\"widget\",\"settings\":{\"layout\":\"2\",\"content_list\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"\",\"position\":\"\",\"btn_text\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[]\",\"_id\":\"8fd12a6\"}],\"content_list2\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Iven Rocky\",\"position\":\"Senior Web Developer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"_id\":\"1f79747\",\"progressbar\":\"[{\\\"title\\\":\\\"WordPress\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Java\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Rebecca Leo\",\"position\":\"Web Designer\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Photoshop\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Sketch\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Css\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"da16f47\",\"image_position\":\"img-right\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Adam Ivan\",\"position\":\"Chef Advisor\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Business Sense\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Cleanliness\\\",\\\"number\\\":\\\"80\\\"},{\\\"title\\\":\\\"Creativity\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"9d03385\",\"image_position\":\"img-left\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Obira Franc\",\"position\":\"Tax Consultant\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-dribbble\\\",\\\"url\\\":\\\"#\\\"}]\",\"progressbar\":\"[{\\\"title\\\":\\\"Negotiation\\\",\\\"number\\\":\\\"90\\\"},{\\\"title\\\":\\\"Tax law\\\",\\\"number\\\":\\\"50\\\"},{\\\"title\\\":\\\"Organisation\\\",\\\"number\\\":\\\"70\\\"}]\",\"lists\":\"\",\"_id\":\"f836421\",\"image_position\":\"img-left\"}],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"4e903ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18766663\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f3225e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"37234e60\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1566,3516,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:7:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:30:\"sub_title_typography_font_size\";i:1;s:32:\"sub_title_typography_font_weight\";i:1;s:22:\"sub_title_space_bottom\";i:1;s:14:\"sub_title_line\";i:1;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:12:\"content_list\";i:1;s:13:\"content_list2\";i:1;}s:12:\"grid_section\";a:3:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1567,3516,'p_page_title_color',''),(1568,3516,'ptitle_overlay','themeoption'),(1569,3516,'rs_page_bg_color','#ffffff'),(1570,3518,'_wp_page_template','default'),(1571,3518,'custom_header','1'),(1572,3518,'header_layout','6'),(1573,3518,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1574,3518,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1575,3518,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1576,3518,'page_h_phone','(210) 123-451'),(1577,3518,'page_h_time','Mon-Fri 8am - 6pm (Sunday closed)'),(1578,3518,'custom_pagetitle','show'),(1579,3518,'custom_title','Team'),(1580,3518,'ptitle_bg','a:2:{s:16:\"background-image\";s:89:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"1539\";s:6:\"height\";s:4:\"1200\";s:5:\"width\";s:4:\"1920\";s:9:\"thumbnail\";s:97:\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-150x150.jpg\";}}'),(1581,3518,'ptitle_padding','a:3:{s:11:\"padding-top\";s:4:\"76px\";s:14:\"padding-bottom\";s:4:\"76px\";s:5:\"units\";s:2:\"px\";}'),(1582,3518,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1583,3518,'content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1584,3518,'show_sidebar_page',''),(1585,3518,'sidebar_page_pos','right'),(1586,3518,'loading_page','themeoption'),(1587,3518,'loading_type','style1'),(1588,3518,'loading_color',''),(1589,3518,'custom_footer','0'),(1590,3518,'footer_layout_custom',''),(1591,3518,'page_back_totop','themeoption'),(1592,3518,'slide_template','default'),(1593,3518,'_elementor_edit_mode','builder'),(1594,3518,'_elementor_template_type','wp-page'),(1595,3518,'_elementor_version','2.8.5'),(1596,3518,'_elementor_data','[{\"id\":\"447525ee\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"padding\":{\"unit\":\"px\",\"top\":\"86\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6d46c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"239427c9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We always work with a great team.\",\"sub_title\":\"Team member\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow fadeInLeft\",\"title_typography_typography\":\"custom\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"st-line-left3\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"36cf3dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"58\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"77423db\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#A8908F\"},\"elements\":[{\"id\":\"5b017e1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"5101bd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"553ef78d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"11b392d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/team-single.jpg\",\"id\":1706},\"title\":\"Fran Bostick\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Tina Holt\",\"position\":\"Federal Contractor\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"37ab8395\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"6edd789c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"28643b20\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Charles Wilkinson\",\"position\":\"Founder & CEO\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"cdc1c54\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"Michael Alan Tate\",\"position\":\"Vice President\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"784ebc9\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Suzanne Higgins\",\"position\":\"Senior Consultant\",\"desc\":\"He has extensive experience in\\norganizational design, business process reengineering.\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-youtube-play\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-skype\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team-details\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"5fa0e23\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"360\",\"height\":\"360\"},\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"64260a7\",\"elType\":\"widget\",\"settings\":{\"text\":\"View more\",\"link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/team\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"48\",\"left\":\"0\",\"isLinked\":false},\"btn_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"btn_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"48\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"},\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e4196fa\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"784d7355\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6708c127\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1597,3518,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:8:{s:5:\"title\";i:1;s:10:\"ct_animate\";i:1;s:27:\"title_typography_typography\";i:1;s:5:\"style\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:35:\"title_typography_line_height_mobile\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:32:\"sub_title_typography_font_family\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:12:\"_css_classes\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:2;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:13:\"content_list3\";i:2;}s:12:\"grid_section\";a:6:{s:14:\"thumbnail_size\";i:2;s:26:\"thumbnail_custom_dimension\";i:2;s:6:\"col_md\";i:2;s:6:\"col_lg\";i:2;s:6:\"col_xl\";i:2;s:10:\"ct_animate\";i:2;}}}}s:9:\"ct_button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"source_section\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:17:\"btn_border_radius\";i:1;s:11:\"btn_padding\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:2:{s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1598,3518,'p_page_title_color',''),(1599,3518,'ptitle_overlay','themeoption'),(1600,3518,'rs_page_bg_color','#ffffff'),(1601,3520,'_wp_page_template','default'),(1602,3520,'custom_header',''),(1603,3520,'header_layout','1'),(1604,3520,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1605,3520,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1606,3520,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1607,3520,'page_h_phone',''),(1608,3520,'page_h_time',''),(1609,3520,'custom_pagetitle','show'),(1610,3520,'custom_title','Team'),(1611,3520,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1612,3520,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1613,3520,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1614,3520,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1615,3520,'show_sidebar_page',''),(1616,3520,'sidebar_page_pos','right'),(1617,3520,'loading_page','themeoption'),(1618,3520,'loading_type','style1'),(1619,3520,'loading_color',''),(1620,3520,'custom_footer',''),(1621,3520,'footer_layout_custom',''),(1622,3520,'page_back_totop','themeoption'),(1623,3520,'slide_template','default'),(1624,3520,'_elementor_edit_mode','builder'),(1625,3520,'_elementor_template_type','wp-page'),(1626,3520,'_elementor_version','2.8.5'),(1627,3520,'_elementor_data','[{\"id\":\"8c17192\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#E4EAEE\",\"padding\":{\"unit\":\"px\",\"top\":\"060\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a445675\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94d2f1d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6cb3f0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":53.917000000000001591615728102624416351318359375},\"elements\":[{\"id\":\"5e7c953\",\"elType\":\"widget\",\"settings\":{\"title\":\"Many organizations realize the benefits of forming work teams.\",\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"cfdc757\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":46.04299999999999926103555480949580669403076171875},\"elements\":[{\"id\":\"828f9d3\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8a0a04a\",\"elType\":\"widget\",\"settings\":{\"layout\":\"4\",\"content_list3\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"title\":\"sfdsdaf\",\"position\":\"\",\"desc\":\"\",\"social\":\"[]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"90df330\"}],\"content_list4\":[{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-team-01.jpg\",\"id\":2114},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"be8b76d\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-team-02.jpg\",\"id\":2115},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"7516d24\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-team-03.jpg\",\"id\":2116},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"505cae5\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/home-team-04.jpg\",\"id\":2117},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"a352cd2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team1.jpg\",\"id\":3383},\"title\":\"Manny Maceda\",\"position\":\"Managing Partner\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b8baca1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team2.jpg\",\"id\":3399},\"title\":\"Gwen Johnson\",\"position\":\"Founder & CEO\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"#\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9c4e5eb\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team3.jpg\",\"id\":3400},\"title\":\"Thomas Olsen\",\"position\":\"Regional Leader\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"14f1627\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/02\\/h6-team4.jpg\",\"id\":3401},\"title\":\"James Allen\",\"position\":\"Chief Executive\",\"social\":\"[{\\\"icon\\\":\\\"fa fa-facebook\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-twitter\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-instagram\\\",\\\"url\\\":\\\"#\\\"},{\\\"icon\\\":\\\"fa fa-behance\\\",\\\"url\\\":\\\"\\\"}]\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"b719730\"}],\"col_md\":\"2\",\"ct_animate\":\"wow fadeInUp\",\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"267\",\"height\":\"352\"}},\"elements\":[],\"widgetType\":\"ct_team_grid\"},{\"id\":\"1d25b5be\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"_margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1628,3520,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:2:{s:5:\"title\";i:1;s:5:\"style\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:3:\"gap\";i:2;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:12:\"ct_team_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:2:{s:13:\"content_list3\";i:1;s:13:\"content_list4\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:10:\"ct_animate\";i:1;s:14:\"thumbnail_size\";i:1;s:26:\"thumbnail_custom_dimension\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(1629,4355,'_wp_page_template','default'),(1630,4355,'custom_header',''),(1631,4355,'header_layout','13'),(1632,4355,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1633,4355,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1634,4355,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1635,4355,'page_h_phone',''),(1636,4355,'page_h_time',''),(1637,4355,'custom_pagetitle','themeoption'),(1638,4355,'custom_title',''),(1639,4355,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1640,4355,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1641,4355,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1642,4355,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1643,4355,'show_sidebar_page',''),(1644,4355,'sidebar_page_pos','right'),(1645,4355,'loading_page','themeoption'),(1646,4355,'loading_type','style1'),(1647,4355,'custom_footer',''),(1648,4355,'footer_layout_custom',''),(1649,4355,'page_back_totop','themeoption'),(1650,4355,'slide_template','default'),(1651,4355,'rs_page_bg_color','#ffffff'),(1652,4355,'_elementor_edit_mode','builder'),(1653,4355,'_elementor_template_type','wp-page'),(1654,4355,'_elementor_version','2.9.7'),(1655,4355,'_elementor_data','[{\"id\":\"314139d7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5c75a3f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"9ed55c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"3aaa0285\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"17375fff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df27a3e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"48c0a81c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30af93e9\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow flipInY\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a4585a4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3dfe8d3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"36452bba\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1656,4355,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:6:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1657,4357,'_wp_page_template','default'),(1658,4357,'custom_header',''),(1659,4357,'header_layout','13'),(1660,4357,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1661,4357,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1662,4357,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1663,4357,'page_h_phone',''),(1664,4357,'page_h_time',''),(1665,4357,'custom_pagetitle','themeoption'),(1666,4357,'custom_title',''),(1667,4357,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1668,4357,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1669,4357,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1670,4357,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1671,4357,'show_sidebar_page',''),(1672,4357,'sidebar_page_pos','right'),(1673,4357,'loading_page','themeoption'),(1674,4357,'loading_type','style1'),(1675,4357,'custom_footer',''),(1676,4357,'footer_layout_custom',''),(1677,4357,'page_back_totop','themeoption'),(1678,4357,'slide_template','default'),(1679,4357,'rs_page_bg_color','#ffffff'),(1680,4357,'_elementor_edit_mode','builder'),(1681,4357,'_elementor_template_type','wp-page'),(1682,4357,'_elementor_version','2.9.7'),(1683,4357,'_elementor_data','[{\"id\":\"3a25e46c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"17ca4b39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"1d2e5174\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"752fb011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1de1c123\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"618920ca\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"56e33978\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"267e41cb\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\",\"limit\":6,\"col_lg\":\"3\",\"col_xl\":\"3\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ba4bd3a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199e3145\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"62540a03\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]');
INSERT INTO `wpiy_postmeta` VALUES (1684,4357,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:12:\"grid_section\";a:6:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:14:\"source_section\";a:1:{s:5:\"limit\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1685,4359,'_wp_page_template','default'),(1686,4359,'custom_header',''),(1687,4359,'header_layout','13'),(1688,4359,'p_logo_dark','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1689,4359,'p_logo_light','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1690,4359,'p_logo_mobile','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(1691,4359,'page_h_phone',''),(1692,4359,'page_h_time',''),(1693,4359,'custom_pagetitle','themeoption'),(1694,4359,'custom_title',''),(1695,4359,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1696,4359,'ptitle_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1697,4359,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1698,4359,'content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(1699,4359,'show_sidebar_page',''),(1700,4359,'sidebar_page_pos','right'),(1701,4359,'loading_page','themeoption'),(1702,4359,'loading_type','style1'),(1703,4359,'custom_footer',''),(1704,4359,'footer_layout_custom',''),(1705,4359,'page_back_totop','themeoption'),(1706,4359,'slide_template','default'),(1707,4359,'rs_page_bg_color','#ffffff'),(1708,4359,'_elementor_edit_mode','builder'),(1709,4359,'_elementor_template_type','wp-page'),(1710,4359,'_elementor_version','2.9.7'),(1711,4359,'_elementor_data','[{\"id\":\"5a6ca294\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"071\",\"right\":0,\"bottom\":\"33\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4cccd8f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.082999999999998408384271897375583648681640625},\"elements\":[{\"id\":\"64f9a477\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our client, global analytical techno company, wanted to build market.\",\"sub_title\":\"FAQ\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"style\":\"st-line-left1\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"3f489776\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.917000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"508c91e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.<\\/p>\",\"text_color\":\"#0e0e0e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7cbc083\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"75e7ec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"36e3181f\",\"elType\":\"widget\",\"settings\":{\"filter_default_title\":\"All\",\"col_md\":\"2\",\"filter\":\"true\",\"pagination_type\":\"loadmore\",\"ct_animate\":\"wow fadeIn\"},\"elements\":[],\"widgetType\":\"ct_portfolio_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"306e1c5f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"9\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c56cf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d632435\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"ct_animate\":\"wow zoomIn\",\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(1712,4359,'_elementor_controls_usage','a:6:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:7:{s:5:\"title\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:33:\"title_typography_font_size_tablet\";i:1;s:28:\"title_typography_line_height\";i:1;s:35:\"title_typography_line_height_tablet\";i:1;s:5:\"style\";i:1;}s:17:\"sub_title_section\";a:1:{s:9:\"sub_title\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:4:{s:3:\"gap\";i:3;s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:2;s:6:\"margin\";i:3;}}}}s:17:\"ct_portfolio_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:12:\"grid_section\";a:4:{s:6:\"col_md\";i:1;s:6:\"filter\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:10:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:10:\"ct_animate\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(1713,5147,'_wp_page_template','default'),(1714,5147,'custom_header',''),(1715,5147,'header_layout','18'),(1716,5147,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1717,5147,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1718,5147,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1719,5147,'page_h_phone',''),(1720,5147,'page_h_time',''),(1721,5147,'h_custom_menu','60'),(1722,5147,'h_custom_menu_left',''),(1723,5147,'h_custom_menu_right',''),(1724,5147,'custom_pagetitle','hide'),(1725,5147,'custom_title',''),(1726,5147,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1727,5147,'p_page_title_color',''),(1728,5147,'ptitle_overlay','themeoption'),(1729,5147,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1730,5147,'ptitle_breadcrumb_page','themeoption'),(1731,5147,'ptitle_breadcrumb_color',''),(1732,5147,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1733,5147,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(1734,5147,'show_sidebar_page',''),(1735,5147,'sidebar_page_pos','right'),(1736,5147,'loading_page','themeoption'),(1737,5147,'loading_type','style1'),(1738,5147,'custom_footer','1'),(1739,5147,'footer_layout_custom','20'),(1740,5147,'page_back_totop','themeoption'),(1741,5147,'slide_template','default'),(1742,5147,'rs_page_bg_color','#ffffff'),(1743,5147,'_elementor_edit_mode','builder'),(1744,5147,'_elementor_template_type','wp-page'),(1745,5147,'_elementor_version','3.0.11'),(1746,5147,'_elementor_data','[{\"id\":\"728f4c62\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\",\"_element_id\":\"section-home\"},\"elements\":[{\"id\":\"74d4c534\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"47e323e2\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c166bc1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ce7146c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1ad5787d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"431e9a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"383de582\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Get Settled\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-handshake\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"368d5ca2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"475448c0\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Learn English\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-work\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"200d90a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"32d4488f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Find Work\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-fancybox-01.jpg\",\"id\":5377},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-achievement\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"100\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"62367889\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"262a3306\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Creativity\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-05.jpg\",\"id\":1556},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-idea\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"150\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"422c7f05\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"42\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-about\"},\"elements\":[{\"id\":\"47b529f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6fb90ef9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/banner-01.jpg\",\"id\":5389},\"title\":\"Golden years we\\u2019ve passed!\",\"layout\":\"3\",\"number\":\"15\",\"counter_icon\":{\"value\":\"flaticonv3 flaticonv3-group\",\"library\":\"flaticonv3\"},\"counter_number\":\"5000\",\"counter_title\":\"Satisfied Clients\",\"counter_suffix\":\"+\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"6dabd231\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65506190\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"711569a6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"390745e6\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d4e39f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-services\"},\"elements\":[{\"id\":\"3d5505e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"16500c4c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"68bf9568\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"14391649\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"66170d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"1346252\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3523981\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f98a5ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"3bdeb304\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5a2547cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e35e175\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15364d4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2d2a37cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a8b60d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"37c0acf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"88e25b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"6cf92175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ca94109\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bd4a954\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-courses\"},\"elements\":[{\"id\":\"2e83553f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5dd77e46\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"574a24a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"7fcae515\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"45daf870\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"531c1a\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"51b4f4ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d5a4a82\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6da5c46a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-contact\"},\"elements\":[{\"id\":\"48e26bb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"291b2d2a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"3539a7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"598091d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"10b8cc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2389b44\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd1c4d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f1d27be\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"7c1ba3c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"31072a6d\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"43def6f\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"7a56ea35\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b4562f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-testimonials\"},\"elements\":[{\"id\":\"6f59c66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1cf3a13a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"675055a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"138e45f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"667986f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"7e372cb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5733ca7e\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45513170\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"section-blog\"},\"elements\":[{\"id\":\"790a0fe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"17f0eb42\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"34dbb17b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f12012b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"4d7bc2d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"736add44\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"5e7d1fa7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"38179132\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1747,5147,'_elementor_controls_usage','a:18:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:34;s:19:\"_inline_size_tablet\";i:17;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:6;s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:6:\"layout\";i:1;s:3:\"gap\";i:18;s:15:\"stretch_section\";i:6;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:9;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:11:\"_element_id\";i:7;s:6:\"margin\";i:2;s:7:\"padding\";i:12;s:13:\"margin_tablet\";i:2;s:7:\"z_index\";i:1;s:14:\"padding_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:5;s:19:\"background_position\";i:5;s:17:\"background_repeat\";i:5;s:15:\"background_size\";i:5;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:4;}}s:7:\"content\";a:2:{s:15:\"section_content\";a:5:{s:10:\"title_text\";i:4;s:16:\"description_text\";i:4;s:8:\"btn_text\";i:4;s:9:\"box_image\";i:4;s:13:\"selected_icon\";i:4;}s:13:\"section_style\";a:2:{s:10:\"ct_animate\";i:4;s:16:\"ct_animate_delay\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:14:\"_margin_tablet\";i:4;}}}}s:9:\"ct_banner\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"content_section\";a:7:{s:5:\"image\";i:1;s:5:\"title\";i:1;s:6:\"number\";i:1;s:12:\"counter_icon\";i:1;s:14:\"counter_number\";i:1;s:13:\"counter_title\";i:1;s:14:\"counter_suffix\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"title_section\";a:6:{s:5:\"title\";i:7;s:11:\"title_color\";i:7;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_line_height\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:7;s:15:\"sub_title_style\";i:7;}s:25:\"content_alignment_section\";a:1:{s:10:\"text_align\";i:5;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:5;s:14:\"_margin_mobile\";i:1;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;s:5:\"align\";i:1;s:26:\"link_typography_typography\";i:1;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:1;}s:15:\"_section_border\";a:6:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:3:{s:5:\"style\";i:1;s:4:\"list\";i:1;s:10:\"ct_animate\";i:1;}}s:8:\"settings\";a:1:{s:13:\"style_section\";a:2:{s:11:\"title_color\";i:1;s:17:\"description_color\";i:1;}}}}s:15:\"ct_service_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:3:{s:6:\"source\";i:1;s:5:\"limit\";i:1;s:9:\"style_l10\";i:1;}s:12:\"grid_section\";a:5:{s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:15:\"pagination_type\";i:1;s:10:\"ct_animate\";i:1;}}}}s:6:\"ct_cta\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:7:{s:5:\"title\";i:1;s:8:\"btn_text\";i:1;s:6:\"layout\";i:1;s:9:\"sub_title\";i:1;s:8:\"btn_link\";i:1;s:5:\"image\";i:1;s:9:\"btn_style\";i:1;}}}}s:8:\"ct_point\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:9:\"item_list\";i:1;s:8:\"bg_image\";i:1;}}}}s:19:\"ct_courses_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"col_md\";i:1;s:4:\"dots\";i:1;}}}}s:7:\"ct_ctf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:7:\"ctf7_id\";i:1;s:8:\"style_l1\";i:1;}}}}s:17:\"ct_fancy_box_grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:12:\"section_list\";a:1:{s:12:\"content_list\";i:1;}s:12:\"grid_section\";a:4:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:13:\"ct_phone_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:4:{s:11:\"label_phone\";i:1;s:12:\"phone_number\";i:1;s:11:\"label_email\";i:1;s:13:\"email_address\";i:1;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:2:{s:25:\"section_carousel_settings\";a:2:{s:6:\"col_md\";i:1;s:4:\"dots\";i:1;}s:13:\"style_section\";a:1:{s:9:\"style_l12\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:2:{s:7:\"clients\";i:1;s:5:\"style\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:5:{s:6:\"col_sm\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_xs\";i:1;}}}}s:16:\"ct_blog_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:2:{s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:8:\"style_l7\";i:1;}s:25:\"section_carousel_settings\";a:7:{s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1748,5348,'_wp_page_template','default'),(1749,5348,'custom_header',''),(1750,5348,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1751,5348,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1752,5348,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(1753,5348,'page_h_phone',''),(1754,5348,'page_h_time',''),(1755,5348,'h_custom_menu',''),(1756,5348,'h_custom_menu_left',''),(1757,5348,'h_custom_menu_right',''),(1758,5348,'custom_pagetitle','themeoption'),(1759,5348,'custom_title',''),(1760,5348,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1761,5348,'p_page_title_color',''),(1762,5348,'ptitle_overlay','themeoption'),(1763,5348,'ptitle_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1764,5348,'ptitle_breadcrumb_page','themeoption'),(1765,5348,'ptitle_breadcrumb_color',''),(1766,5348,'content_bg_color','a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}'),(1767,5348,'content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";}'),(1768,5348,'show_sidebar_page',''),(1769,5348,'sidebar_page_pos','right'),(1770,5348,'loading_page','themeoption'),(1771,5348,'loading_type','style1'),(1772,5348,'custom_footer',''),(1773,5348,'footer_layout_custom',''),(1774,5348,'page_back_totop','themeoption'),(1775,5348,'slide_template','default'),(1776,5348,'rs_page_bg_color','#ffffff'),(1777,5348,'_elementor_edit_mode','builder'),(1778,5348,'_elementor_template_type','wp-page'),(1779,5348,'_elementor_version','3.0.11'),(1780,5348,'_elementor_data','[]'),(3951,5726,'_elementor_template_type','kit'),(1783,156,'_wp_page_template','default'),(1784,156,'_elementor_controls_usage','a:0:{}'),(1785,156,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1786,156,'show_sidebar_post',''),(1787,156,'sidebar_post_pos','right'),(1788,156,'slide_template','default'),(1789,156,'post_views_count','7'),(1790,156,'_thumbnail_id','1538'),(1791,156,'_wp_old_slug','engaging-new-audiences-through-smart-approach'),(1792,156,'video_url',''),(1793,156,'custom_header',''),(1794,156,'header_layout','15'),(1795,156,'custom_pagetitle','themeoption'),(1796,156,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1797,156,'rs_page_bg_color','#ffffff'),(1800,159,'_wp_page_template','default'),(1801,159,'_elementor_controls_usage','a:0:{}'),(1802,159,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1803,159,'show_sidebar_post','1'),(1804,159,'sidebar_post_pos','none'),(1805,159,'slide_template','default'),(1806,159,'post_views_count','12'),(1807,159,'_thumbnail_id','1542'),(1808,159,'_wp_old_slug','how-to-go-about-intiating-an-start-up-in-a-matter-of-days'),(1809,159,'video_url',''),(1810,159,'custom_header',''),(1811,159,'header_layout','15'),(1812,159,'custom_pagetitle','themeoption'),(1813,159,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1814,159,'rs_page_bg_color','#ffffff'),(1817,161,'_wp_page_template','default'),(1818,161,'_elementor_controls_usage','a:0:{}'),(1819,161,'post_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1820,161,'show_sidebar_post',''),(1821,161,'sidebar_post_pos','right'),(1822,161,'slide_template',''),(1823,161,'post_views_count','306'),(1824,161,'video_url',''),(1825,161,'custom_header',''),(1826,161,'header_layout','15'),(1827,161,'custom_pagetitle','themeoption'),(1828,161,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1829,161,'rs_page_bg_color',''),(3952,5726,'_elementor_version','3.1.4'),(1832,161,'_wp_old_slug','food-industry-leaders-often-change-their-profound'),(1833,161,'_thumbnail_id','1530'),(1834,161,'_wp_old_slug','8-ways-best-practices-for-seo-can-increase'),(1837,164,'_wp_page_template','default'),(1838,164,'_elementor_controls_usage','a:0:{}'),(1839,164,'post_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1840,164,'show_sidebar_post','1'),(1841,164,'sidebar_post_pos','left'),(1842,164,'slide_template','default'),(1843,164,'post_views_count','320'),(1844,164,'_thumbnail_id','5534'),(1845,164,'video_url','https://www.youtube.com/watch?v=SF4aHwxHtZ0'),(1846,164,'custom_header',''),(1847,164,'header_layout','15'),(1848,164,'custom_pagetitle','themeoption'),(1849,164,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1850,164,'rs_page_bg_color','#ffffff'),(1851,164,'_wp_old_slug','what-we-are-capable-to-beo-usually-discovered'),(3953,5726,'_elementor_css','a:6:{s:4:\"time\";i:1617481425;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:\"\";}'),(1854,164,'_wp_old_slug','you-can-use-it-for-any-kind-website-like'),(3967,5728,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1338;s:6:\"height\";i:2000;s:4:\"file\";s:29:\"2021/04/700241Frontcover.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-201x300.jpeg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"700241Frontcover-685x1024.jpeg\";s:5:\"width\";i:685;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"700241Frontcover-768x1148.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"700241Frontcover-1028x1536.jpeg\";s:5:\"width\";i:1028;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-900x313.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"700241Frontcover-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-600x897.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:897;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-600x897.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:897;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"700241Frontcover-250x285.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:285;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:31:\"Brown_Howard_700241_cvr-v6.indd\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1857,166,'_wp_page_template','default'),(1858,166,'_elementor_controls_usage','a:0:{}'),(1859,166,'post_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";}'),(1860,166,'show_sidebar_post',''),(1861,166,'sidebar_post_pos','right'),(1862,166,'slide_template',''),(1863,166,'post_views_count','19'),(1864,166,'video_url',''),(1865,166,'custom_header',''),(1866,166,'header_layout','15'),(1867,166,'custom_pagetitle','themeoption'),(1868,166,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1869,166,'rs_page_bg_color',''),(1870,166,'_wp_old_slug','strategy-for-norways-peion-to-fund-global'),(1873,166,'_wp_old_slug','10-secrets-about-10-simple-steps-for-blogs-post'),(1874,166,'_thumbnail_id','1539'),(1875,166,'_wp_old_slug','10-secrets-about-10-simple-steps-for-blogs'),(1878,169,'_wp_page_template','default'),(1879,169,'_elementor_controls_usage','a:0:{}'),(1880,169,'post_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(1881,169,'show_sidebar_post',''),(1882,169,'sidebar_post_pos','right'),(1883,169,'slide_template',''),(1884,169,'_wp_old_date','2019-11-05'),(1885,169,'_wp_old_date','2019-11-04'),(1886,169,'post_views_count','3'),(1887,169,'_thumbnail_id','1534'),(1888,169,'video_url',''),(1889,169,'custom_header',''),(1890,169,'header_layout','15'),(1891,169,'custom_pagetitle','themeoption'),(1892,169,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1893,169,'rs_page_bg_color',''),(3950,5726,'_elementor_edit_mode','builder'),(1896,169,'_wp_old_slug','many-types-of-construction-equipment-are-designed'),(1897,583,'slide_template',''),(1898,583,'post_views_count','2'),(1899,583,'portfolio_sub_title','Interior Design'),(1900,583,'_wp_page_template','default'),(1901,583,'portfolio_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(1902,583,'_elementor_edit_mode','builder'),(1903,583,'_elementor_template_type','wp-post'),(1904,583,'_elementor_version','2.7.5'),(1905,583,'_elementor_data','[{\"id\":\"15e9dfce\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"content_position\":\"middle\",\"gap\":\"extended\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"258e2d51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1e40afd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Look how wonderful work we have done!\",\"sub_title\":\"Portfolio\",\"sub_title_space_bottom\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false},{\"id\":\"7388310\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"14\",\"isLinked\":false}},\"elements\":[{\"id\":\"70ed0350\",\"elType\":\"widget\",\"settings\":{\"editor\":\"At vero eos et accusamus et iusto odio digni goiku\\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. \",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48fe0bbf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5bc9639d\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":63,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"714b5cd3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\",\"id\":1530},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"800\",\"height\":\"775\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5b03d11\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"59\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"260a630d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Digital Analysis\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49a4ce28\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"28\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35687c3f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Eveniet in vulputate velit esse molestie cons to\\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\\nsim. Temporibus autem.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bb9e3ca\",\"elType\":\"widget\",\"settings\":{\"portfolio_content\":[{\"ct_icon\":{\"value\":\"fas fa-tag\",\"library\":\"fa-solid\"},\"_id\":\"00b76be\",\"label\":\"Category:\",\"content\":\"Strategy\"},{\"ct_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"_id\":\"e9f10e9\",\"label\":\"Client:\",\"content\":\"Real Madrid C.F\"},{\"ct_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"_id\":\"644e486\",\"label\":\"Date:\",\"content\":\"24\\/11\\/2017\"},{\"ct_icon\":{\"value\":\"fas fa-globe-asia\",\"library\":\"fa-solid\"},\"_id\":\"9388f08\",\"label\":\"Website:\",\"content\":\"www.giorf.esp\"}]},\"elements\":[],\"widgetType\":\"ct_portfolio_details\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a34e962\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"65\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a68a8a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7f079b53\",\"elType\":\"widget\",\"settings\":{\"slides_to_show\":\"3\",\"slides_to_scroll\":\"1\",\"arrows\":\"true\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"infinite\":\"true\"},\"elements\":[],\"widgetType\":\"ct_portfolio_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(1906,583,'_wp_old_slug','rf-tower'),(1907,583,'_thumbnail_id','1539'),(1908,583,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:18:\"title_space_bottom\";i:1;}s:17:\"sub_title_section\";a:2:{s:9:\"sub_title\";i:1;s:22:\"sub_title_space_bottom\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:3;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:3;s:7:\"padding\";i:1;s:13:\"margin_tablet\";i:1;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:22:\"image_custom_dimension\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}}}s:20:\"ct_portfolio_details\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:17:\"portfolio_content\";i:1;}}}}s:21:\"ct_portfolio_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:25:\"section_carousel_settings\";a:2:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;}}}}}'),(1909,583,'custom_pagetitle','themeoption'),(1910,583,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(1911,583,'p_page_title_color',''),(1912,583,'ptitle_overlay','themeoption'),(1913,583,'ptitle_breadcrumb','themeoption'),(1914,583,'rs_page_bg_color',''),(1915,583,'_wp_old_slug','digital-analysis'),(1916,583,'ptitle_breadcrumb_page','themeoption'),(1917,583,'_wp_old_date','2019-11-13'),(1918,758,'_elementor_controls_usage','a:0:{}'),(1919,758,'_regular_price','80.99'),(1920,758,'total_sales','0'),(1921,758,'_tax_status','taxable'),(1922,758,'_tax_class',''),(1923,758,'_manage_stock','no'),(1924,758,'_backorders','no'),(1925,758,'_sold_individually','no'),(1926,758,'_virtual','no'),(1927,758,'_downloadable','no'),(1928,758,'_download_limit','-1'),(1929,758,'_download_expiry','-1'),(1930,758,'_stock',''),(1931,758,'_stock_status','instock'),(1932,758,'_wc_average_rating','0'),(1933,758,'_wc_review_count','0'),(1934,758,'_product_version','5.1.0'),(1935,758,'_price','80.99'),(1936,758,'slide_template','default'),(1937,758,'_thumbnail_id','1939'),(1938,758,'_wp_old_slug','x15-fibre-axe'),(1939,758,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1940,771,'_elementor_controls_usage','a:0:{}'),(1941,771,'_regular_price','60.99'),(1942,771,'_sale_price','32.99'),(1943,771,'total_sales','0'),(1944,771,'_tax_status','taxable'),(1945,771,'_tax_class',''),(1946,771,'_manage_stock','no'),(1947,771,'_backorders','no'),(1948,771,'_sold_individually','no'),(1949,771,'_virtual','no'),(1950,771,'_downloadable','no'),(1951,771,'_download_limit','-1'),(1952,771,'_download_expiry','-1'),(1953,771,'_stock',''),(1954,771,'_stock_status','instock'),(1955,771,'_wc_average_rating','0'),(1956,771,'_wc_review_count','0'),(1957,771,'_product_version','5.1.0'),(1958,771,'_price','32.99'),(1959,771,'slide_template','default'),(1960,771,'_thumbnail_id','1933'),(1961,771,'_wp_old_slug','spirit-level-ruler'),(1962,771,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1963,772,'_elementor_controls_usage','a:0:{}'),(1964,772,'_regular_price','14.99'),(1965,772,'total_sales','0'),(1966,772,'_tax_status','taxable'),(1967,772,'_tax_class',''),(1968,772,'_manage_stock','no'),(1969,772,'_backorders','no'),(1970,772,'_sold_individually','no'),(1971,772,'_virtual','no'),(1972,772,'_downloadable','no'),(1973,772,'_download_limit','-1'),(1974,772,'_download_expiry','-1'),(1975,772,'_stock',''),(1976,772,'_stock_status','instock'),(1977,772,'_wc_average_rating','0'),(1978,772,'_wc_review_count','0'),(1979,772,'_product_version','5.1.0'),(1980,772,'_price','14.99'),(1981,772,'slide_template','default'),(1982,772,'_thumbnail_id','1935'),(1983,772,'_wp_old_slug','small-pointing-tool'),(1984,772,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(1985,773,'_elementor_controls_usage','a:0:{}'),(1986,773,'_regular_price','110.99'),(1987,773,'_sale_price','90.99'),(1988,773,'total_sales','0'),(1989,773,'_tax_status','taxable'),(1990,773,'_tax_class',''),(1991,773,'_manage_stock','no'),(1992,773,'_backorders','no'),(1993,773,'_sold_individually','no'),(1994,773,'_virtual','no'),(1995,773,'_downloadable','no'),(1996,773,'_download_limit','-1'),(1997,773,'_download_expiry','-1'),(1998,773,'_stock',''),(1999,773,'_stock_status','instock'),(2000,773,'_wc_average_rating','0'),(2001,773,'_wc_review_count','0'),(2002,773,'_product_version','5.1.0'),(2003,773,'_price','90.99'),(2004,773,'slide_template','default'),(2005,773,'_thumbnail_id','1938'),(2006,773,'_wp_old_slug','roughneck-micro-pick'),(2007,773,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2008,774,'_elementor_controls_usage','a:0:{}'),(2009,774,'_regular_price','24.99'),(2010,774,'total_sales','0'),(2011,774,'_tax_status','taxable'),(2012,774,'_tax_class',''),(2013,774,'_manage_stock','no'),(2014,774,'_backorders','no'),(2015,774,'_sold_individually','no'),(2016,774,'_virtual','no'),(2017,774,'_downloadable','no'),(2018,774,'_download_limit','-1'),(2019,774,'_download_expiry','-1'),(2020,774,'_stock',''),(2021,774,'_stock_status','instock'),(2022,774,'_wc_average_rating','0'),(2023,774,'_wc_review_count','0'),(2024,774,'_product_version','5.1.0'),(2025,774,'_price','24.99'),(2026,774,'slide_template','default'),(2027,774,'_thumbnail_id','1931'),(2028,774,'_wp_old_slug','pick-axe-head'),(2029,774,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2030,775,'_elementor_controls_usage','a:0:{}'),(2031,775,'_regular_price','70.99'),(2032,775,'total_sales','0'),(2033,775,'_tax_status','taxable'),(2034,775,'_tax_class',''),(2035,775,'_manage_stock','no'),(2036,775,'_backorders','no'),(2037,775,'_sold_individually','no'),(2038,775,'_virtual','no'),(2039,775,'_downloadable','no'),(2040,775,'_download_limit','-1'),(2041,775,'_download_expiry','-1'),(2042,775,'_stock',''),(2043,775,'_stock_status','instock'),(2044,775,'_wc_average_rating','0'),(2045,775,'_wc_review_count','0'),(2046,775,'_product_version','5.1.0'),(2047,775,'_price','70.99'),(2048,775,'slide_template','default'),(2049,775,'_thumbnail_id','1934'),(2050,775,'_wp_old_slug','ox-spirit-level'),(2051,775,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2052,776,'_elementor_controls_usage','a:0:{}'),(2053,776,'_regular_price','58.99'),(2054,776,'total_sales','0'),(2055,776,'_tax_status','taxable'),(2056,776,'_tax_class',''),(2057,776,'_manage_stock','no'),(2058,776,'_backorders','no'),(2059,776,'_sold_individually','no'),(2060,776,'_virtual','no'),(2061,776,'_downloadable','no'),(2062,776,'_download_limit','-1'),(2063,776,'_download_expiry','-1'),(2064,776,'_stock',''),(2065,776,'_stock_status','instock'),(2066,776,'_wc_average_rating','0'),(2067,776,'_wc_review_count','0'),(2068,776,'_product_version','5.1.0'),(2069,776,'_price','58.99'),(2070,776,'slide_template','default'),(2071,776,'_thumbnail_id','1930'),(2072,776,'_wp_old_slug','ice-pick'),(2073,776,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2074,777,'_elementor_controls_usage','a:0:{}'),(2075,777,'_regular_price','24.99'),(2076,777,'total_sales','0'),(2077,777,'_tax_status','taxable'),(2078,777,'_tax_class',''),(2079,777,'_manage_stock','no'),(2080,777,'_backorders','no'),(2081,777,'_sold_individually','no'),(2082,777,'_virtual','no'),(2083,777,'_downloadable','no'),(2084,777,'_download_limit','-1'),(2085,777,'_download_expiry','-1'),(2086,777,'_stock',''),(2087,777,'_stock_status','instock'),(2088,777,'_wc_average_rating','0'),(2089,777,'_wc_review_count','0'),(2090,777,'_product_version','5.1.0'),(2091,777,'_price','24.99'),(2092,777,'slide_template','default'),(2093,777,'_thumbnail_id','1929'),(2094,777,'_wp_old_slug','finishing-trowel'),(2095,777,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2096,778,'_elementor_controls_usage','a:0:{}'),(2097,778,'_regular_price','120.99'),(2098,778,'_sale_price','80.99'),(2099,778,'total_sales','0'),(2100,778,'_tax_status','taxable'),(2101,778,'_tax_class',''),(2102,778,'_manage_stock','no'),(2103,778,'_backorders','no'),(2104,778,'_sold_individually','no'),(2105,778,'_virtual','no'),(2106,778,'_downloadable','no'),(2107,778,'_download_limit','-1'),(2108,778,'_download_expiry','-1'),(2109,778,'_stock',''),(2110,778,'_stock_status','instock'),(2111,778,'_wc_average_rating','5.00'),(2112,778,'_wc_review_count','2'),(2113,778,'_product_version','5.1.0'),(2114,778,'_price','80.99'),(2115,778,'slide_template','default'),(2116,778,'_wc_rating_count','a:1:{i:5;i:2;}'),(2117,778,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2118,778,'_thumbnail_id','1928'),(2119,778,'_wp_old_slug','fat-max-spirit-level'),(2120,778,'_product_image_gallery','1938,1933'),(2121,780,'_elementor_controls_usage','a:0:{}'),(2122,780,'_regular_price','60.99'),(2123,780,'total_sales','0'),(2124,780,'_tax_status','taxable'),(2125,780,'_tax_class',''),(2126,780,'_manage_stock','no'),(2127,780,'_backorders','no'),(2128,780,'_sold_individually','no'),(2129,780,'_virtual','no'),(2130,780,'_downloadable','no'),(2131,780,'_download_limit','-1'),(2132,780,'_download_expiry','-1'),(2133,780,'_stock',''),(2134,780,'_stock_status','instock'),(2135,780,'_wc_average_rating','0'),(2136,780,'_wc_review_count','0'),(2137,780,'_product_version','5.1.0'),(2138,780,'_price','39.99'),(2139,780,'slide_template','default'),(2140,780,'_thumbnail_id','1927'),(2141,780,'_wp_old_slug','electronic-spirit-level'),(2142,780,'_sale_price','39.99'),(2143,780,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2144,781,'_elementor_controls_usage','a:0:{}'),(2145,781,'_regular_price','43.99'),(2146,781,'total_sales','0'),(2147,781,'_tax_status','taxable'),(2148,781,'_tax_class',''),(2149,781,'_manage_stock','no'),(2150,781,'_backorders','no'),(2151,781,'_sold_individually','no'),(2152,781,'_virtual','no'),(2153,781,'_downloadable','no'),(2154,781,'_download_limit','-1'),(2155,781,'_download_expiry','-1'),(2156,781,'_stock',''),(2157,781,'_stock_status','instock'),(2158,781,'_wc_average_rating','0'),(2159,781,'_wc_review_count','0'),(2160,781,'_product_version','5.1.0'),(2161,781,'_price','43.99'),(2162,781,'slide_template','default'),(2163,781,'_thumbnail_id','1926'),(2164,781,'_wp_old_slug','bucket-trowel'),(2165,781,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2166,782,'_elementor_controls_usage','a:0:{}'),(2167,782,'_regular_price','23.99'),(2168,782,'total_sales','0'),(2169,782,'_tax_status','taxable'),(2170,782,'_tax_class',''),(2171,782,'_manage_stock','no'),(2172,782,'_backorders','no'),(2173,782,'_sold_individually','no'),(2174,782,'_virtual','no'),(2175,782,'_downloadable','no'),(2176,782,'_download_limit','-1'),(2177,782,'_download_expiry','-1'),(2178,782,'_stock',''),(2179,782,'_stock_status','instock'),(2180,782,'_wc_average_rating','0'),(2181,782,'_wc_review_count','0'),(2182,782,'_product_version','5.1.0'),(2183,782,'_price','23.99'),(2184,782,'slide_template','default'),(2185,782,'_thumbnail_id','1925'),(2186,782,'_wp_old_slug','brick-trowel'),(2187,782,'product_feature','a:3:{i:0;s:35:\"Sed do eiusmod tempor incididunt ut\";i:1;s:29:\"Labore et dolore magna aliqua\";i:2;s:36:\"Ut enim ad minim veniam quis nostrud\";}'),(2188,4931,'_wp_page_template','default'),(2189,4931,'icon_type','icon'),(2190,4931,'service_icon','flaticonv5-screen'),(2191,4931,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2192,4931,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(2193,4931,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2194,4931,'custom_pagetitle','themeoption'),(2195,4931,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2196,4931,'p_page_title_color',''),(2197,4931,'ptitle_overlay','themeoption'),(2198,4931,'slide_template',''),(2199,4931,'rs_page_bg_color',''),(2200,4931,'_wp_old_date','2020-06-13'),(2201,4931,'_thumbnail_id','1539'),(2202,4931,'_elementor_edit_mode','builder'),(2203,4931,'_elementor_template_type','wp-post'),(2204,4931,'_elementor_version','2.9.13'),(2205,4931,'_elementor_data','[{\"id\":\"4648e02\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"202334f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"cea3c53\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"20497c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51bc2539\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10686d70\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"8ec33ae\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"bf7506a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"65f0b193\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"18e72853\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"44c78a7b\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"45feaa6d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4d9bdc7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c8d6456\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"37c83b05\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"505317b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1c8930ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1755f097\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c1e22b4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36006427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6fe7bab0\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2206,4931,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2207,4931,'ptitle_breadcrumb_page','themeoption'),(2208,91,'_elementor_controls_usage','a:0:{}'),(2209,91,'_form','<div class=\"input-filled\">[text* your-name placeholder \"Your name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Your mail*\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Phone*\"]</div>\n<div class=\"input-filled\">[select* your-subject \"Subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-check-circle space-right\"></i>Consult today</button></div>'),(2210,91,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:187:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2211,91,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"Consultio \"[your-subject]\"\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:187:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2212,91,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2213,91,'_additional_settings',''),(2214,91,'_locale','en_US'),(2215,446,'_wp_page_template','default'),(2216,446,'service_except','Drive down your rates with car insurance discounts and premium reductions.'),(2217,446,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2218,446,'slide_template',''),(2219,446,'service_icon','flaticonv5-localization'),(2220,446,'_elementor_edit_mode','builder'),(2221,446,'_elementor_template_type','wp-post'),(2222,446,'_elementor_version','2.7.5'),(2223,446,'_elementor_data','[{\"id\":\"24b96b2a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3e0a26a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"27e9d0b2\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"7fdadd4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3401c8e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b2f0a2c\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"5ea1b3fd\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"72341ec9\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4d71e5a4\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d9823f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"525fdf55\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70fccaab\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5038b12b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"692d161\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"9a76b64\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2841df09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"569f6d22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ebe579f\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ebe53e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"42d3dd1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"26346a93\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2224,446,'_thumbnail_id','4716'),(2225,446,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2226,446,'_wp_old_slug','metal-roofing'),(2227,446,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2228,446,'rs_page_bg_color',''),(2229,446,'_wp_old_slug','market-research'),(2230,446,'icon_type','icon'),(2231,446,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2232,446,'_wp_old_date','2019-11-11'),(2233,446,'_wp_old_date','2020-02-11'),(2234,446,'_wp_old_slug','renters-insurance'),(2235,446,'_wp_old_slug','fund-transfer'),(2236,446,'custom_pagetitle','themeoption'),(2237,446,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2238,446,'p_page_title_color',''),(2239,446,'ptitle_overlay','themeoption'),(2240,446,'_wp_old_slug','audit-and-assurance-services'),(2241,446,'_wp_old_slug','awesome-support'),(2242,446,'_wp_old_slug','insurance-service'),(2243,446,'ptitle_breadcrumb_page','themeoption'),(2244,446,'_wp_old_slug','financial-growth'),(2245,448,'_wp_page_template','default'),(2246,448,'service_except','Save up to 10% when you insure your property & autos with company.'),(2247,448,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2248,448,'slide_template',''),(2249,448,'service_icon','flaticonv5-airplane'),(2250,448,'_elementor_edit_mode','builder'),(2251,448,'_elementor_template_type','wp-post'),(2252,448,'_elementor_version','2.7.5'),(2253,448,'_elementor_data','[{\"id\":\"1b1cd0f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c48a456\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"a89488c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"b5349e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f53d85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"233b1a0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"c8deb5e\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2fd822c\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"d5c9c33\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"6fed9c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6dae33\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"70afa14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"66112fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4d15cfd\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"ab598c4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"7ca16fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1548059\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1021f1b\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33e0b2e4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7f7d0b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9ad765c\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2254,448,'_thumbnail_id','4715'),(2255,448,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2256,448,'_wp_old_slug','interior-design'),(2257,448,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2258,448,'rs_page_bg_color',''),(2259,448,'_wp_old_slug','seo-optimization'),(2260,448,'icon_type','icon'),(2261,448,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2262,448,'_wp_old_date','2019-11-11'),(2263,448,'_wp_old_date','2020-02-11'),(2264,448,'_wp_old_slug','business-insurance'),(2265,448,'_wp_old_slug','tax-consulting'),(2266,448,'custom_pagetitle','themeoption'),(2267,448,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2268,448,'p_page_title_color',''),(2269,448,'ptitle_overlay','themeoption'),(2270,448,'_wp_old_slug','tax-and-consultancy-services'),(2271,448,'_wp_old_slug','business-planner'),(2272,448,'_wp_old_slug','website-designing'),(2273,448,'ptitle_breadcrumb_page','themeoption'),(2274,448,'_wp_old_slug','financial-limit'),(2275,645,'_wp_page_template','default'),(2276,645,'service_icon','flaticonv5-business-presentation'),(2277,645,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(2278,645,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2279,645,'slide_template',''),(2280,645,'_elementor_edit_mode','builder'),(2281,645,'_elementor_template_type','wp-post'),(2282,645,'_elementor_version','2.7.5'),(2283,645,'_elementor_data','[{\"id\":\"3a4a7b26\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1880fb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"915447d\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"178ed7df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d350375\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f51b661\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"15862e4f\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"57b83fdc\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4354465f\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"2483f9f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5dd80012\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"eca4320\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1a864c63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"4eb05a19\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6f3b3b88\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"258fd3ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3ad38e33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3057e303\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e2459bd\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2e81477c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"46098650\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2284,645,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2285,645,'_wp_old_slug','general-contracting'),(2286,645,'rs_page_bg_color',''),(2287,645,'_wp_old_slug','chart-management'),(2288,645,'icon_type','icon'),(2289,645,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2290,645,'_wp_old_date','2019-11-13'),(2291,645,'_wp_old_slug','flood-insurance'),(2292,645,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2293,645,'_wp_old_slug','leadership-work__trashed'),(2294,645,'_wp_old_slug','leadership-work'),(2295,645,'custom_pagetitle','themeoption'),(2296,645,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2297,645,'p_page_title_color',''),(2298,645,'ptitle_overlay','themeoption'),(2299,645,'_wp_old_slug','global-insights'),(2300,645,'ptitle_breadcrumb_page','themeoption'),(2301,647,'_wp_page_template','default'),(2302,647,'service_icon','flaticonv5-affiliate-marketing'),(2303,647,'service_except','Lorem Ipsum is simply dummy text of the printing and its typeseting industry.'),(2304,647,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2305,647,'slide_template',''),(2306,647,'_elementor_edit_mode','builder'),(2307,647,'_elementor_template_type','wp-post'),(2308,647,'_elementor_version','2.7.5'),(2309,647,'_elementor_data','[{\"id\":\"6a53a81c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"36346e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bc7d745\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"46d7f391\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48fe5cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b982cce\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"4e071452\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2504dd8d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"48fcf97\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"4e1963b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7409dc3d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5f1a36b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"156390c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"59243e36\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5ecb93f9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6299f06d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b9da903\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2f548340\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3eca01ba\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"304ec3a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"976bc52\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2310,647,'_thumbnail_id','1534'),(2311,647,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2312,647,'_wp_old_slug','house-renovation'),(2313,647,'icon_type','icon'),(2314,647,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2315,647,'rs_page_bg_color',''),(2316,647,'_wp_old_slug','strategy'),(2317,647,'_wp_old_date','2019-11-13'),(2318,647,'_wp_old_slug','marriage-insurance'),(2319,647,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2320,647,'_wp_old_slug','legal-analytics__trashed'),(2321,647,'_wp_old_slug','legal-analytics'),(2322,647,'custom_pagetitle','themeoption'),(2323,647,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2324,647,'p_page_title_color',''),(2325,647,'ptitle_overlay','themeoption'),(2326,647,'_wp_old_slug','business-strategy'),(2327,647,'ptitle_breadcrumb_page','themeoption'),(2328,649,'_wp_page_template','default'),(2329,649,'service_icon','flaticonv5-business'),(2330,649,'service_except','Drive down your rates with car insurance discounts and premium reductions.'),(2331,649,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2332,649,'slide_template',''),(2333,649,'_elementor_edit_mode','builder'),(2334,649,'_elementor_template_type','wp-post'),(2335,649,'_elementor_version','2.7.5'),(2336,649,'_elementor_data','[{\"id\":\"1e878f39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7a9c35f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"3b4f9955\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"3abf5173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a431e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16e925ac\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"f8300\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"1a3bf5d0\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"28c9244d\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"1376fcea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d17c783\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"576eff3a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"607fd0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"d590152\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"fcae319\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"5d59bf2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"230322a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74358e14\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"367d11a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a37ca53\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6d1d9841\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2337,649,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2338,649,'_wp_old_slug','laminate-flooring'),(2339,649,'_thumbnail_id','1539'),(2340,649,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2341,649,'icon_type','icon'),(2342,649,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2343,649,'rs_page_bg_color',''),(2344,649,'_wp_old_slug','program-management'),(2345,649,'_wp_old_date','2019-11-13'),(2346,649,'_wp_old_slug','life-insurance'),(2347,649,'custom_pagetitle','themeoption'),(2348,649,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2349,649,'p_page_title_color',''),(2350,649,'ptitle_overlay','themeoption'),(2351,649,'_wp_old_slug','legal-assessment'),(2352,649,'_wp_old_slug','legal-assessment-and-hr-management'),(2353,649,'_wp_old_slug','no-coding-skills'),(2354,649,'ptitle_breadcrumb_page','themeoption'),(2355,649,'_wp_old_slug','automotive-mobility'),(2356,651,'_wp_page_template','default'),(2357,651,'service_icon','flaticonv5-photographer'),(2358,651,'service_except','Drive down your rates with car insurance discounts and premium reductions.'),(2359,651,'case_study_content_padding','a:3:{s:11:\"padding-top\";s:0:\"\";s:14:\"padding-bottom\";s:0:\"\";s:5:\"units\";s:2:\"px\";}'),(2360,651,'slide_template',''),(2361,651,'_elementor_edit_mode','builder'),(2362,651,'_elementor_template_type','wp-post'),(2363,651,'_elementor_version','2.7.5'),(2364,651,'_elementor_data','[{\"id\":\"4881fb50\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"60f5cf44\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5236cc5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"5bf474db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"21ca04a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"118ec289\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"3e340a56\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"9a22fc5\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"5a3ebb17\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"68320a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"415a7443\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"5e6d0038\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"64eeb67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"42ea80fc\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"52d8de1c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"233d4206\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3651e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71cdb235\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a78cb00\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62a925c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"526a9100\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2365,651,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2366,651,'_wp_old_slug','surface-demolition'),(2367,651,'_thumbnail_id','1556'),(2368,651,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:4:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2369,651,'icon_type','icon'),(2370,651,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2371,651,'rs_page_bg_color',''),(2372,651,'_wp_old_slug','business-planning'),(2373,651,'_wp_old_date','2019-11-13'),(2374,651,'_wp_old_slug','health-insurance'),(2375,651,'custom_pagetitle','themeoption'),(2376,651,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2377,651,'p_page_title_color',''),(2378,651,'ptitle_overlay','themeoption'),(2379,651,'_wp_old_slug','seo-optimization'),(2380,651,'_wp_old_slug','lifetime-updates'),(2381,651,'ptitle_breadcrumb_page','themeoption'),(2382,651,'_wp_old_slug','private-equity'),(2383,1615,'_elementor_controls_usage','a:0:{}'),(2384,1615,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name*</label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name*</label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help*</label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address*</label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message*</label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>'),(2385,1615,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2386,1615,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2387,1615,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2388,1615,'_additional_settings',''),(2389,1615,'_locale','en_US'),(2390,2625,'_wp_page_template','default'),(2391,2625,'service_icon','flaticonv5-reading-book'),(2392,2625,'service_except','Drive down your rates with car insurance discounts and premium reductions.'),(2393,2625,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2394,2625,'slide_template',''),(2395,2625,'_wp_old_date','2019-12-15'),(2396,2625,'_elementor_edit_mode','builder'),(2397,2625,'_elementor_template_type','wp-post'),(2398,2625,'_elementor_version','2.8.2'),(2399,2625,'_elementor_data','[{\"id\":\"f71bbd0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77476d13\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"65f4c82a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"40e943bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e9b79e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69ebafa0\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"294cdfea\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"6663b56\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"12dbcad8\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"bb7c850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"15cbe3c7\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"8d917c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"30043fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6f4ca975\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\"},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\"},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\"}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"7a4f2513\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"324ad909\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"622a7bb0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"537521e4\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34a6953a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3161829\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6f924728\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2400,2625,'icon_type','icon'),(2401,2625,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2402,2625,'rs_page_bg_color',''),(2403,2625,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2404,2625,'_wp_old_slug','setup-and-training__trashed'),(2405,2625,'_wp_old_slug','setup-and-training'),(2406,2625,'_wp_old_date','2019-12-04'),(2407,2625,'_wp_old_date','2020-02-04'),(2408,2625,'_wp_old_slug','home-insurance'),(2409,2625,'_thumbnail_id','1534'),(2410,2625,'_wp_old_slug','market-research'),(2411,2625,'custom_pagetitle','themeoption'),(2412,2625,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2413,2625,'p_page_title_color',''),(2414,2625,'ptitle_overlay','themeoption'),(2415,2625,'_wp_old_slug','market-research-and-advertising'),(2416,2625,'_wp_old_slug','extensive-docs'),(2417,2625,'_wp_old_slug','business-planning'),(2418,2625,'ptitle_breadcrumb_page','themeoption'),(2419,2625,'_wp_old_slug','customer-experience'),(2420,2627,'_wp_page_template','default'),(2421,2627,'service_icon','flaticonv5-caduceus'),(2422,2627,'service_except','Help protect lost income, pay for higher education, and cover.'),(2423,2627,'service_content_padding','a:3:{s:5:\"units\";s:2:\"px\";s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";}'),(2424,2627,'slide_template',''),(2425,2627,'_wp_old_date','2019-12-15'),(2426,2627,'_elementor_edit_mode','builder'),(2427,2627,'_elementor_template_type','wp-post'),(2428,2627,'_elementor_version','2.9.6'),(2429,2627,'_elementor_data','[{\"id\":\"35d636a1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"397d9651\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e91ae1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4dc16a8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"365b03bb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"44c0289d\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"79479e0d\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"2375eb14\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"37af1b7c\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"79ab90e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773c0bb\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"46b12884\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"1040e061\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"147e59da\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"445c6273\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2e58457c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"77e2a5fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bfe3ad7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ff9f718\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4aee66fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"19e73df\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2430,2627,'icon_type','icon'),(2431,2627,'service_icon_img','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(2432,2627,'rs_page_bg_color',''),(2433,2627,'_wp_old_slug','legal-assessment__trashed'),(2434,2627,'_wp_old_slug','legal-assessment'),(2435,2627,'_thumbnail_id','4705'),(2436,2627,'_wp_old_date','2019-12-04'),(2437,2627,'_wp_old_date','2020-02-04'),(2438,2627,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2439,2627,'_wp_old_slug','car-insurance'),(2440,2627,'_wp_old_slug','business-planning'),(2441,2627,'custom_pagetitle','themeoption'),(2442,2627,'ptitle_bg','a:2:{s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(2443,2627,'p_page_title_color',''),(2444,2627,'ptitle_overlay','themeoption'),(2445,2627,'_wp_old_slug','life-health-insurance-consulting'),(2446,2627,'_wp_old_slug','global-connection'),(2447,2627,'ptitle_breadcrumb_page','themeoption'),(2448,2627,'_wp_old_slug','tax-management'),(2449,3823,'_elementor_controls_usage','a:0:{}'),(2450,3823,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Name (required)</label>[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Email adress (required)</label>[email* your-email placeholder \"Mail*\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Phone (optional)</label>[text* your-name placeholder \"Phone*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Subject (required)</label>[select* your-subject \"Subject*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Your message</label>[textarea* your-message placeholder \"Type message*\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-check-circle space-right\"></i>Send message</button></div>\n</div>'),(2451,3823,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2452,3823,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2453,3823,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2454,3823,'_additional_settings',''),(2455,3823,'_locale','en_US'),(2456,3851,'_elementor_controls_usage','a:0:{}'),(2457,3851,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(2458,3851,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:293:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2459,3851,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:9:\"Consultio\";s:6:\"sender\";s:36:\"Consultio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:293:\"From: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2460,3851,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2461,3851,'_additional_settings',''),(2462,3851,'_locale','en_US'),(2463,4171,'_wp_page_template','default'),(2464,4171,'icon_type','icon'),(2465,4171,'service_icon','flaticon-stats'),(2466,4171,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2467,4171,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(2468,4171,'service_content_padding','a:3:{s:11:\"padding-top\";s:1:\"0\";s:14:\"padding-bottom\";s:1:\"0\";s:5:\"units\";s:2:\"px\";}'),(2469,4171,'slide_template',''),(2470,4171,'rs_page_bg_color',''),(2471,4171,'_wp_old_date','2020-01-21'),(2472,4171,'_elementor_edit_mode','builder'),(2473,4171,'_elementor_template_type','wp-post'),(2474,4171,'_elementor_version','2.9.6'),(2475,4171,'_elementor_data','[{\"id\":\"6c67734\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"44ffb367\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"65760aff\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"4c49accc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38ac0e77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3403ca95\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"5b6def17\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"7a542963\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"64356383\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"43162871\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58b58dfc\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"3bfd56b7\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6f0e2371\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"ccd9bf\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"505dcc04\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"72318916\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"49fae915\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"41bf0205\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"724df9e1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d1ccc31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6c8d5802\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2476,4171,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2477,4174,'_wp_page_template','default'),(2478,4174,'icon_type','icon'),(2479,4174,'service_icon','flaticon-chart'),(2480,4174,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2481,4174,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(2482,4174,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2483,4174,'slide_template',''),(2484,4174,'rs_page_bg_color',''),(2485,4174,'_elementor_edit_mode','builder'),(2486,4174,'_elementor_template_type','wp-post'),(2487,4174,'_elementor_version','2.9.6'),(2488,4174,'_elementor_data','[{\"id\":\"4768c103\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7750b682\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4ef8fb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"24df3c85\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7287157\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"381bdecc\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"283f37f7\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"189ea31\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"6640a592\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":4,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"7d2db62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103ed49d\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"1fb4aeb0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"310525f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"35cda179\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"485e1348\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"550c04b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"1570951c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"756e5eb9\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"40af6df3\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5de5804e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7033d293\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2489,4174,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2490,4177,'_wp_page_template','default'),(2491,4177,'icon_type','icon'),(2492,4177,'service_icon','flaticon-leadership'),(2493,4177,'service_icon_img','a:9:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";s:5:\"title\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:11:\"description\";s:0:\"\";}'),(2494,4177,'service_except','A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.'),(2495,4177,'service_content_padding','a:3:{s:11:\"padding-top\";s:3:\"0px\";s:14:\"padding-bottom\";s:3:\"0px\";s:5:\"units\";s:2:\"px\";}'),(2496,4177,'slide_template',''),(2497,4177,'rs_page_bg_color',''),(2498,4177,'_elementor_edit_mode','builder'),(2499,4177,'_elementor_template_type','wp-post'),(2500,4177,'_elementor_version','2.9.6'),(2501,4177,'_elementor_data','[{\"id\":\"708ce3b7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"22\",\"margin\":{\"unit\":\"px\",\"top\":\"065\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a5bbf70\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6c4ae781\",\"elType\":\"widget\",\"settings\":{\"title\":\"We give the best Services \",\"style\":\"style2\",\"title_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"9\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_title\"},{\"id\":\"21e354b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"31\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1432ade\",\"elType\":\"widget\",\"settings\":{\"editor\":\"All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cfd4902\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"title\":\"\",\"content\":\"Sed do eiusmod tempor incididunt ut\",\"_id\":\"76202eb\"},{\"title\":\"\",\"content\":\"Labore et dolore magna aliqua\",\"_id\":\"dd96aef\"},{\"title\":\"\",\"content\":\"Ut enim ad minim veniam quis nostrud\",\"_id\":\"c6f6b2a\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"51\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_list\"},{\"id\":\"31efdd58\",\"elType\":\"widget\",\"settings\":{\"image\":[{\"id\":1534,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-05.jpg\"},{\"id\":1530,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-01.jpg\"},{\"id\":1538,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-09.jpg\"},{\"id\":1536,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/theme-07.jpg\"}],\"slides_to_show\":\"2\",\"slides_to_show_tablet\":\"2\",\"slides_to_show_mobile\":\"1\",\"slides_to_scroll\":\"2\",\"slides_to_scroll_tablet\":\"2\",\"slides_to_scroll_mobile\":\"1\",\"dots\":\"true\",\"autoplay\":\"true\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false},\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_gallery_carousel\"},{\"id\":\"57fa577d\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Personal Care\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"9b25c0b\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Super Support\",\"tab_content\":\"<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br\\/><\\/p>\\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.<\\/p>\",\"_id\":\"4f1a9d6\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"},{\"tab_title\":\"Guaranteed\",\"tab_content\":\"<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.<\\/p>\\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<\\/p>\",\"_id\":\"d7551e8\",\"content_type\":\"text_editor\",\"tab_content_template\":\"\",\"ct_icon\":{\"value\":\"\",\"library\":\"\"},\"form_id\":\"\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"62\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_tabs\"},{\"id\":\"4d353789\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Read more\",\"limit\":3,\"slides_to_show\":\"2\",\"arrows\":\"true\",\"infinite\":\"true\",\"layout\":\"2\",\"source\":[\"business|service-category\"],\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_service_carousel\"}],\"isInner\":false},{\"id\":\"f4be680\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d515d76\",\"elType\":\"widget\",\"settings\":{\"menu\":\"29\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"},{\"id\":\"413a3416\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4d6776f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7c4d2e83\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"title\":\"\",\"content\":\"3111 West Allegheny Avenue\\nPennsylvania 19132\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"fas fa-map-marked-alt\",\"library\":\"fa-solid\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"6426fb7\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"1-982-782-5297<br\\/>\\n1-982-125-6378\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-phone\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"65f3b3f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"\",\"content\":\"support@consultio.com\",\"icon_type\":\"icon\",\"ct_icon\":{\"value\":\"material zmdi zmdi-email-open\",\"library\":\"material\"},\"icon_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"9e1c26f\",\"icon_box_color\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"style\":\"style2\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"6de25836\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":46,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"28074dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Brochures\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_space_bottom\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"79d8da8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"View our 2020 Medical prospectus of\\nbrochure for an easy to read guide on\\nall of the services offer.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b3f0cd7\",\"elType\":\"widget\",\"settings\":{\"download\":[{\"title\":\"Download Brochure\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96bc76d\",\"ct_icon\":{\"value\":\"material zmdi zmdi-download\",\"library\":\"material\"}},{\"title\":\"Characteristics\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"eb6826c\",\"ct_icon\":{\"value\":\"far fa-file-pdf\",\"library\":\"fa-regular\"}}]},\"elements\":[],\"widgetType\":\"ct_download\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"548f6a1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"77964138\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"475c150\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"025c276\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(2502,4177,'_elementor_controls_usage','a:14:{s:8:\"ct_title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:3:{s:5:\"title\";i:1;s:5:\"style\";i:1;s:27:\"title_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_line_height\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:7:\"ct_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_list\";a:1:{s:4:\"list\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_gallery_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_gallery\";a:1:{s:5:\"image\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:6:{s:16:\"slides_to_scroll\";i:1;s:4:\"dots\";i:1;s:8:\"autoplay\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_tabs\";a:1:{s:4:\"tabs\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"ct_service_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:15:\"display_section\";a:1:{s:11:\"button_text\";i:1;}s:14:\"source_section\";a:2:{s:5:\"limit\";i:1;s:6:\"source\";i:1;}s:25:\"section_carousel_settings\";a:5:{s:6:\"arrows\";i:1;s:8:\"infinite\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:1:{s:4:\"menu\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:18:\"title_space_bottom\";i:2;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:1:{s:12:\"contact_info\";i:1;}}s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:5:\"style\";i:1;}}}}s:11:\"ct_download\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:8:\"download\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:2;}}}}s:15:\"ct_clients_list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_content\";a:1:{s:7:\"clients\";i:1;}}s:8:\"settings\";a:1:{s:25:\"section_carousel_settings\";a:9:{s:8:\"autoplay\";i:1;s:14:\"autoplay_speed\";i:1;s:8:\"infinite\";i:1;s:5:\"speed\";i:1;s:6:\"col_xs\";i:1;s:6:\"col_sm\";i:1;s:6:\"col_md\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}}}}}'),(2503,4177,'_wp_old_slug','business-strategy'),(4421,24,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(4402,24,'_edit_lock','1620519863:1'),(4408,5807,'_elementor_css','a:6:{s:4:\"time\";i:1620343990;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4409,5808,'_wp_page_template','default'),(4410,5808,'_elementor_edit_mode','builder'),(4411,5808,'_elementor_template_type','wp-page'),(4412,5808,'_elementor_version','3.0.11'),(4413,5808,'_elementor_data','[{\"id\":\"99fbaeb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"27\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e818542\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":36.667000000000001591615728102624416351318359375,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"c8a2f48\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Head office address:\",\"description_text\":\"3556 Hartford Way Vlg, Mount\\nPleasant, SC, 29466, Australia.\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"d5f3e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.9969999999999998863131622783839702606201171875,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"9e16110\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"title_text\":\"Call for help:\",\"description_text\":\"(734) 697-2907<br\\/>\\n(843) 971-1906\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false},{\"id\":\"729a4d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Mail for information:\",\"description_text\":\"noreply@envato.com<br\\/>\\nnoreply@consultio.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/contact-about1.png\",\"id\":1568},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6bfcba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a free consultation with our expert team to solve your prolems.\",\"style\":\"st-line-top1\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":49,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"0f30a93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For any inquiries relating to my  Retail and Leadership Programs*\",\"text_color\":\"#37404c\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f409baa\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"91\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d33da39\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f37ff66\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"f688838\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"847d541\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"0a3178b\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"8fb4924\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"55ab553\"},{\"client_name\":\"Client 5\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/client-05.png\",\"id\":1678},\"_id\":\"a08c2d1\"}],\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"4\",\"slides_to_show_mobile\":\"2\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"autoplay\":\"true\",\"autoplay_speed\":8000,\"infinite\":\"true\",\"speed\":800,\"col_xs\":\"2\",\"col_sm\":\"3\",\"col_md\":\"4\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"style\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"}],\"isInner\":false}],\"isInner\":false}]'),(4414,5808,'_elementor_css','a:6:{s:4:\"time\";i:1620343990;s:5:\"fonts\";a:1:{i:0;s:7:\"Poppins\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2525,5003,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-web-address placeholder \"Web address *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[select* your-service \"Services\" \"Success fullfill\" \"StartUp Business\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block hover-white\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>'),(2526,5003,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2527,5003,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2528,5003,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2529,5003,'_additional_settings',''),(2530,5003,'_locale','en_US'),(2531,5005,'_form','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Phone number...\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[select* your-service \"Choose services*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-paper-plane space-right\"></i>Get a Quote</button></div>\n</div>'),(2532,5005,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:24:\"casethemes.net@gmail.com\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2533,5005,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Cstrio \"[your-subject]\"\";s:6:\"sender\";s:33:\"Cstrio <casethemes.net@gmail.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:184:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\";s:18:\"additional_headers\";s:34:\"Reply-To: casethemes.net@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2534,5005,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2535,5005,'_additional_settings',''),(2536,5005,'_locale','en_US'),(2537,5005,'_config_errors','a:2:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}s:16:\"mail_2.recipient\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(2538,5600,'_menu_item_type','post_type'),(2539,5600,'_menu_item_menu_item_parent','5544'),(2540,5600,'_menu_item_object_id','32'),(2541,5600,'_menu_item_object','page'),(2542,5600,'_menu_item_target',''),(2543,5600,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2544,5600,'_menu_item_xfn',''),(2545,5600,'_menu_item_url',''),(2546,5600,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2547,5600,'_menu_item_ct_icon',''),(2548,5601,'_menu_item_type','post_type'),(2549,5601,'_menu_item_menu_item_parent','5544'),(2550,5601,'_menu_item_object_id','30'),(2551,5601,'_menu_item_object','page'),(2552,5601,'_menu_item_target',''),(2553,5601,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2554,5601,'_menu_item_xfn',''),(2555,5601,'_menu_item_url',''),(2556,5601,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2557,5601,'_menu_item_ct_icon',''),(2558,5602,'_menu_item_type','post_type'),(2559,5602,'_menu_item_menu_item_parent','5544'),(2560,5602,'_menu_item_object_id','28'),(2561,5602,'_menu_item_object','page'),(2562,5602,'_menu_item_target',''),(2563,5602,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2564,5602,'_menu_item_xfn',''),(2565,5602,'_menu_item_url',''),(2566,5602,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2567,5602,'_menu_item_ct_icon',''),(2568,5603,'_menu_item_type','post_type'),(2569,5603,'_menu_item_menu_item_parent','5544'),(2570,5603,'_menu_item_object_id','26'),(2571,5603,'_menu_item_object','page'),(2572,5603,'_menu_item_target',''),(2573,5603,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2574,5603,'_menu_item_xfn',''),(2575,5603,'_menu_item_url',''),(2576,5603,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2577,5603,'_menu_item_ct_icon',''),(2578,5604,'_menu_item_type','post_type'),(2579,5604,'_menu_item_menu_item_parent','5544'),(2580,5604,'_menu_item_object_id','24'),(2581,5604,'_menu_item_object','page'),(2582,5604,'_menu_item_target',''),(2583,5604,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2584,5604,'_menu_item_xfn',''),(2585,5604,'_menu_item_url',''),(2586,5604,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2587,5604,'_menu_item_ct_icon',''),(2588,5605,'_menu_item_type','post_type'),(2589,5605,'_menu_item_menu_item_parent','0'),(2590,5605,'_menu_item_object_id','9'),(2591,5605,'_menu_item_object','page'),(2592,5605,'_menu_item_target',''),(2593,5605,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2594,5605,'_menu_item_xfn',''),(2595,5605,'_menu_item_url',''),(2596,5605,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2597,5605,'_menu_item_ct_icon',''),(2598,5606,'_menu_item_type','post_type'),(2599,5606,'_menu_item_menu_item_parent','0'),(2600,5606,'_menu_item_object_id','26'),(2601,5606,'_menu_item_object','page'),(2602,5606,'_menu_item_target',''),(2603,5606,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2604,5606,'_menu_item_xfn',''),(2605,5606,'_menu_item_url',''),(2606,5606,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2607,5606,'_menu_item_ct_icon',''),(2608,5607,'_menu_item_type','post_type'),(2609,5607,'_menu_item_menu_item_parent','0'),(2610,5607,'_menu_item_object_id','24'),(2611,5607,'_menu_item_object','page'),(2612,5607,'_menu_item_target',''),(2613,5607,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2614,5607,'_menu_item_xfn',''),(2615,5607,'_menu_item_url',''),(2616,5607,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2617,5607,'_menu_item_ct_icon',''),(2618,5608,'_menu_item_type','post_type'),(2619,5608,'_menu_item_menu_item_parent','0'),(2620,5608,'_menu_item_object_id','132'),(2621,5608,'_menu_item_object','page'),(2622,5608,'_menu_item_target',''),(2623,5608,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2624,5608,'_menu_item_xfn',''),(2625,5608,'_menu_item_url',''),(2626,5608,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2627,5608,'_menu_item_ct_icon',''),(2628,5608,'_menu_item_ct_megaprofile','0'),(2629,5608,'_menu_item_ct_onepage','no-one-page'),(2630,5608,'_menu_item_ct_onepage_offset',''),(2631,5609,'_menu_item_type','post_type'),(2632,5609,'_menu_item_menu_item_parent','5608'),(2633,5609,'_menu_item_object_id','132'),(2634,5609,'_menu_item_object','page'),(2635,5609,'_menu_item_target',''),(2636,5609,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2637,5609,'_menu_item_xfn',''),(2638,5609,'_menu_item_url',''),(2639,5609,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2640,5609,'_menu_item_ct_icon',''),(2641,5610,'_menu_item_type','post_type'),(2642,5610,'_menu_item_menu_item_parent','5608'),(2643,5610,'_menu_item_object_id','129'),(2644,5610,'_menu_item_object','page'),(2645,5610,'_menu_item_target',''),(2646,5610,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2647,5610,'_menu_item_xfn',''),(2648,5610,'_menu_item_url',''),(2649,5610,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2650,5610,'_menu_item_ct_icon',''),(2651,5611,'_menu_item_type','post_type'),(2652,5611,'_menu_item_menu_item_parent','5608'),(2653,5611,'_menu_item_object_id','123'),(2654,5611,'_menu_item_object','page'),(2655,5611,'_menu_item_target',''),(2656,5611,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2657,5611,'_menu_item_xfn',''),(2658,5611,'_menu_item_url',''),(2659,5611,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2660,5611,'_menu_item_ct_icon',''),(2661,5612,'_menu_item_type','post_type'),(2662,5612,'_menu_item_menu_item_parent','5610'),(2663,5612,'_menu_item_object_id','129'),(2664,5612,'_menu_item_object','page'),(2665,5612,'_menu_item_target',''),(2666,5612,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2667,5612,'_menu_item_xfn',''),(2668,5612,'_menu_item_url',''),(2669,5612,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2670,5612,'_menu_item_ct_icon',''),(2671,5613,'_menu_item_type','post_type'),(2672,5613,'_menu_item_menu_item_parent','5610'),(2673,5613,'_menu_item_object_id','127'),(2674,5613,'_menu_item_object','page'),(2675,5613,'_menu_item_target',''),(2676,5613,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2677,5613,'_menu_item_xfn',''),(2678,5613,'_menu_item_url',''),(2679,5613,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2680,5613,'_menu_item_ct_icon',''),(2681,5614,'_menu_item_type','post_type'),(2682,5614,'_menu_item_menu_item_parent','5610'),(2683,5614,'_menu_item_object_id','125'),(2684,5614,'_menu_item_object','page'),(2685,5614,'_menu_item_target',''),(2686,5614,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2687,5614,'_menu_item_xfn',''),(2688,5614,'_menu_item_url',''),(2689,5614,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2690,5614,'_menu_item_ct_icon',''),(2691,5615,'_menu_item_type','post_type'),(2692,5615,'_menu_item_menu_item_parent','5609'),(2693,5615,'_menu_item_object_id','136'),(2694,5615,'_menu_item_object','page'),(2695,5615,'_menu_item_target',''),(2696,5615,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2697,5615,'_menu_item_xfn',''),(2698,5615,'_menu_item_url',''),(2699,5615,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2700,5615,'_menu_item_ct_icon',''),(2701,5616,'_menu_item_type','post_type'),(2702,5616,'_menu_item_menu_item_parent','5609'),(2703,5616,'_menu_item_object_id','134'),(2704,5616,'_menu_item_object','page'),(2705,5616,'_menu_item_target',''),(2706,5616,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2707,5616,'_menu_item_xfn',''),(2708,5616,'_menu_item_url',''),(2709,5616,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2710,5616,'_menu_item_ct_icon',''),(2711,5617,'_menu_item_type','post_type'),(2712,5617,'_menu_item_menu_item_parent','5609'),(2713,5617,'_menu_item_object_id','132'),(2714,5617,'_menu_item_object','page'),(2715,5617,'_menu_item_target',''),(2716,5617,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2717,5617,'_menu_item_xfn',''),(2718,5617,'_menu_item_url',''),(2719,5617,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2720,5617,'_menu_item_ct_icon',''),(2721,5618,'_menu_item_type','post_type'),(2722,5618,'_menu_item_menu_item_parent','5608'),(2723,5618,'_menu_item_object_id','161'),(2724,5618,'_menu_item_object','post'),(2725,5618,'_menu_item_target',''),(2726,5618,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2727,5618,'_menu_item_xfn',''),(2728,5618,'_menu_item_url',''),(2729,5618,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2730,5618,'_menu_item_ct_icon',''),(2731,5619,'_menu_item_type','post_type'),(2732,5619,'_menu_item_menu_item_parent','5618'),(2733,5619,'_menu_item_object_id','161'),(2734,5619,'_menu_item_object','post'),(2735,5619,'_menu_item_target',''),(2736,5619,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2737,5619,'_menu_item_xfn',''),(2738,5619,'_menu_item_url',''),(2739,5619,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2740,5619,'_menu_item_ct_icon',''),(2741,5620,'_menu_item_type','post_type'),(2742,5620,'_menu_item_menu_item_parent','5618'),(2743,5620,'_menu_item_object_id','164'),(2744,5620,'_menu_item_object','post'),(2745,5620,'_menu_item_target',''),(2746,5620,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2747,5620,'_menu_item_xfn',''),(2748,5620,'_menu_item_url',''),(2749,5620,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2750,5620,'_menu_item_ct_icon',''),(2751,5621,'_menu_item_type','post_type'),(2752,5621,'_menu_item_menu_item_parent','5618'),(2753,5621,'_menu_item_object_id','159'),(2754,5621,'_menu_item_object','post'),(2755,5621,'_menu_item_target',''),(2756,5621,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2757,5621,'_menu_item_xfn',''),(2758,5621,'_menu_item_url',''),(2759,5621,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2760,5621,'_menu_item_ct_icon',''),(2761,5622,'_menu_item_type','post_type'),(2762,5622,'_menu_item_menu_item_parent','5544'),(2763,5622,'_menu_item_object_id','362'),(2764,5622,'_menu_item_object','page'),(2765,5622,'_menu_item_target',''),(2766,5622,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2767,5622,'_menu_item_xfn',''),(2768,5622,'_menu_item_url',''),(2769,5622,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2770,5622,'_menu_item_ct_icon',''),(2771,5623,'_menu_item_type','post_type'),(2772,5623,'_menu_item_menu_item_parent','5544'),(2773,5623,'_menu_item_object_id','367'),(2774,5623,'_menu_item_object','page'),(2775,5623,'_menu_item_target',''),(2776,5623,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2777,5623,'_menu_item_xfn',''),(2778,5623,'_menu_item_url',''),(2779,5623,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2780,5623,'_menu_item_ct_icon',''),(2781,5624,'_menu_item_type','post_type'),(2782,5624,'_menu_item_menu_item_parent','0'),(2783,5624,'_menu_item_object_id','407'),(2784,5624,'_menu_item_object','page'),(2785,5624,'_menu_item_target',''),(2786,5624,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2787,5624,'_menu_item_xfn',''),(2788,5624,'_menu_item_url',''),(2789,5624,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2790,5624,'_menu_item_ct_icon',''),(2791,5624,'_menu_item_ct_megaprofile','0'),(2792,5624,'_menu_item_ct_onepage','no-one-page'),(2793,5624,'_menu_item_ct_onepage_offset',''),(2794,5625,'_menu_item_type','post_type'),(2795,5625,'_menu_item_menu_item_parent','5627'),(2796,5625,'_menu_item_object_id','417'),(2797,5625,'_menu_item_object','page'),(2798,5625,'_menu_item_target',''),(2799,5625,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2800,5625,'_menu_item_xfn',''),(2801,5625,'_menu_item_url',''),(2802,5625,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2803,5625,'_menu_item_ct_icon',''),(2804,5626,'_menu_item_type','post_type'),(2805,5626,'_menu_item_menu_item_parent','5627'),(2806,5626,'_menu_item_object_id','415'),(2807,5626,'_menu_item_object','page'),(2808,5626,'_menu_item_target',''),(2809,5626,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2810,5626,'_menu_item_xfn',''),(2811,5626,'_menu_item_url',''),(2812,5626,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2813,5626,'_menu_item_ct_icon',''),(2814,5627,'_menu_item_type','post_type'),(2815,5627,'_menu_item_menu_item_parent','0'),(2816,5627,'_menu_item_object_id','415'),(2817,5627,'_menu_item_object','page'),(2818,5627,'_menu_item_target',''),(2819,5627,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2820,5627,'_menu_item_xfn',''),(2821,5627,'_menu_item_url',''),(2822,5627,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2823,5627,'_menu_item_ct_icon',''),(2824,5627,'_menu_item_ct_megaprofile','0'),(2825,5627,'_menu_item_ct_onepage','no-one-page'),(2826,5627,'_menu_item_ct_onepage_offset',''),(2827,5628,'_menu_item_type','post_type'),(2828,5628,'_menu_item_menu_item_parent','0'),(2829,5628,'_menu_item_object_id','407'),(2830,5628,'_menu_item_object','page'),(2831,5628,'_menu_item_target',''),(2832,5628,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2833,5628,'_menu_item_xfn',''),(2834,5628,'_menu_item_url',''),(2835,5628,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2836,5628,'_menu_item_ct_icon',''),(2837,5629,'_menu_item_type','post_type'),(2838,5629,'_menu_item_menu_item_parent','0'),(2839,5629,'_menu_item_object_id','129'),(2840,5629,'_menu_item_object','page'),(2841,5629,'_menu_item_target',''),(2842,5629,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2843,5629,'_menu_item_xfn',''),(2844,5629,'_menu_item_url',''),(2845,5629,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2846,5629,'_menu_item_ct_icon',''),(2847,5630,'_menu_item_type','post_type'),(2848,5630,'_menu_item_menu_item_parent','0'),(2849,5630,'_menu_item_object_id','415'),(2850,5630,'_menu_item_object','page'),(2851,5630,'_menu_item_target',''),(2852,5630,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2853,5630,'_menu_item_xfn',''),(2854,5630,'_menu_item_url',''),(2855,5630,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2856,5630,'_menu_item_ct_icon',''),(2857,5631,'_menu_item_type','post_type'),(2858,5631,'_menu_item_menu_item_parent','5627'),(2859,5631,'_menu_item_object_id','579'),(2860,5631,'_menu_item_object','portfolio'),(2861,5631,'_menu_item_target',''),(2862,5631,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2863,5631,'_menu_item_xfn',''),(2864,5631,'_menu_item_url',''),(2865,5631,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2866,5631,'_menu_item_ct_icon',''),(2867,5632,'_menu_item_type','post_type'),(2868,5632,'_menu_item_menu_item_parent','5634'),(2869,5632,'_menu_item_object_id','749'),(2870,5632,'_menu_item_object','page'),(2871,5632,'_menu_item_target',''),(2872,5632,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2873,5632,'_menu_item_xfn',''),(2874,5632,'_menu_item_url',''),(2875,5632,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2876,5632,'_menu_item_ct_icon',''),(2877,5633,'_menu_item_type','post_type'),(2878,5633,'_menu_item_menu_item_parent','5634'),(2879,5633,'_menu_item_object_id','748'),(2880,5633,'_menu_item_object','page'),(2881,5633,'_menu_item_target',''),(2882,5633,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2883,5633,'_menu_item_xfn',''),(2884,5633,'_menu_item_url',''),(2885,5633,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2886,5633,'_menu_item_ct_icon',''),(2887,5634,'_menu_item_type','post_type'),(2888,5634,'_menu_item_menu_item_parent','5544'),(2889,5634,'_menu_item_object_id','748'),(2890,5634,'_menu_item_object','page'),(2891,5634,'_menu_item_target',''),(2892,5634,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2893,5634,'_menu_item_xfn',''),(2894,5634,'_menu_item_url',''),(2895,5634,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2896,5634,'_menu_item_ct_icon',''),(2897,5634,'_menu_item_ct_megaprofile','0'),(2898,5634,'_menu_item_ct_onepage','no-one-page'),(2899,5634,'_menu_item_ct_onepage_offset',''),(2900,5635,'_menu_item_type','post_type'),(2901,5635,'_menu_item_menu_item_parent','5634'),(2902,5635,'_menu_item_object_id','783'),(2903,5635,'_menu_item_object','page'),(2904,5635,'_menu_item_target',''),(2905,5635,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2906,5635,'_menu_item_xfn',''),(2907,5635,'_menu_item_url',''),(2908,5635,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2909,5635,'_menu_item_ct_icon',''),(2910,5636,'_menu_item_type','post_type'),(2911,5636,'_menu_item_menu_item_parent','5634'),(2912,5636,'_menu_item_object_id','778'),(2913,5636,'_menu_item_object','product'),(2914,5636,'_menu_item_target',''),(2915,5636,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2916,5636,'_menu_item_xfn',''),(2917,5636,'_menu_item_url',''),(2918,5636,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2919,5636,'_menu_item_ct_icon',''),(2920,5637,'_menu_item_type','post_type'),(2921,5637,'_menu_item_menu_item_parent','0'),(2922,5637,'_menu_item_object_id','651'),(2923,5637,'_menu_item_object','service'),(2924,5637,'_menu_item_target',''),(2925,5637,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2926,5637,'_menu_item_xfn',''),(2927,5637,'_menu_item_url',''),(2928,5637,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2929,5637,'_menu_item_ct_icon',''),(2930,5638,'_menu_item_type','post_type'),(2931,5638,'_menu_item_menu_item_parent','0'),(2932,5638,'_menu_item_object_id','649'),(2933,5638,'_menu_item_object','service'),(2934,5638,'_menu_item_target',''),(2935,5638,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2936,5638,'_menu_item_xfn',''),(2937,5638,'_menu_item_url',''),(2938,5638,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2939,5638,'_menu_item_ct_icon',''),(2940,5639,'_menu_item_type','post_type'),(2941,5639,'_menu_item_menu_item_parent','0'),(2942,5639,'_menu_item_object_id','645'),(2943,5639,'_menu_item_object','service'),(2944,5639,'_menu_item_target',''),(2945,5639,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2946,5639,'_menu_item_xfn',''),(2947,5639,'_menu_item_url',''),(2948,5639,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2949,5639,'_menu_item_ct_icon',''),(2950,5640,'_menu_item_type','post_type'),(2951,5640,'_menu_item_menu_item_parent','0'),(2952,5640,'_menu_item_object_id','448'),(2953,5640,'_menu_item_object','service'),(2954,5640,'_menu_item_target',''),(2955,5640,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2956,5640,'_menu_item_xfn',''),(2957,5640,'_menu_item_url',''),(2958,5640,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2959,5640,'_menu_item_ct_icon',''),(2960,5641,'_menu_item_type','post_type'),(2961,5641,'_menu_item_menu_item_parent','0'),(2962,5641,'_menu_item_object_id','446'),(2963,5641,'_menu_item_object','service'),(2964,5641,'_menu_item_target',''),(2965,5641,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2966,5641,'_menu_item_xfn',''),(2967,5641,'_menu_item_url',''),(2968,5641,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2969,5641,'_menu_item_ct_icon',''),(2970,5642,'_menu_item_type','post_type'),(2971,5642,'_menu_item_menu_item_parent','5544'),(2972,5642,'_menu_item_object_id','1972'),(2973,5642,'_menu_item_object','page'),(2974,5642,'_menu_item_target',''),(2975,5642,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2976,5642,'_menu_item_xfn',''),(2977,5642,'_menu_item_url',''),(2978,5642,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2979,5642,'_menu_item_ct_icon',''),(2980,5643,'_menu_item_type','post_type'),(2981,5643,'_menu_item_menu_item_parent','0'),(2982,5643,'_menu_item_object_id','407'),(2983,5643,'_menu_item_object','page'),(2984,5643,'_menu_item_target',''),(2985,5643,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2986,5643,'_menu_item_xfn',''),(2987,5643,'_menu_item_url',''),(2988,5643,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(2989,5643,'_menu_item_ct_icon',''),(2990,5643,'_menu_item_ct_megaprofile','0'),(2991,5643,'_menu_item_ct_onepage','no-one-page'),(2992,5643,'_menu_item_ct_onepage_offset',''),(2993,5644,'_menu_item_type','post_type'),(2994,5644,'_menu_item_menu_item_parent','5584'),(2995,5644,'_menu_item_object_id','26'),(2996,5644,'_menu_item_object','page'),(2997,5644,'_menu_item_target',''),(2998,5644,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2999,5644,'_menu_item_xfn',''),(3000,5644,'_menu_item_url',''),(3001,5644,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3002,5644,'_menu_item_ct_icon',''),(3003,5645,'_menu_item_type','post_type'),(3004,5645,'_menu_item_menu_item_parent','5584'),(3005,5645,'_menu_item_object_id','30'),(3006,5645,'_menu_item_object','page'),(3007,5645,'_menu_item_target',''),(3008,5645,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3009,5645,'_menu_item_xfn',''),(3010,5645,'_menu_item_url',''),(3011,5645,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3012,5645,'_menu_item_ct_icon',''),(3013,5646,'_menu_item_type','post_type'),(3014,5646,'_menu_item_menu_item_parent','5584'),(3015,5646,'_menu_item_object_id','32'),(3016,5646,'_menu_item_object','page'),(3017,5646,'_menu_item_target',''),(3018,5646,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3019,5646,'_menu_item_xfn',''),(3020,5646,'_menu_item_url',''),(3021,5646,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3022,5646,'_menu_item_ct_icon',''),(3023,5647,'_menu_item_type','post_type'),(3024,5647,'_menu_item_menu_item_parent','5584'),(3025,5647,'_menu_item_object_id','28'),(3026,5647,'_menu_item_object','page'),(3027,5647,'_menu_item_target',''),(3028,5647,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3029,5647,'_menu_item_xfn',''),(3030,5647,'_menu_item_url',''),(3031,5647,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3032,5647,'_menu_item_ct_icon',''),(3033,5648,'_menu_item_type','post_type'),(3034,5648,'_menu_item_menu_item_parent','5584'),(3035,5648,'_menu_item_object_id','362'),(3036,5648,'_menu_item_object','page'),(3037,5648,'_menu_item_target',''),(3038,5648,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3039,5648,'_menu_item_xfn',''),(3040,5648,'_menu_item_url',''),(3041,5648,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3042,5648,'_menu_item_ct_icon',''),(3043,5649,'_menu_item_type','post_type'),(3044,5649,'_menu_item_menu_item_parent','5584'),(3045,5649,'_menu_item_object_id','367'),(3046,5649,'_menu_item_object','page'),(3047,5649,'_menu_item_target',''),(3048,5649,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3049,5649,'_menu_item_xfn',''),(3050,5649,'_menu_item_url',''),(3051,5649,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3052,5649,'_menu_item_ct_icon',''),(3053,5650,'_menu_item_type','post_type'),(3054,5650,'_menu_item_menu_item_parent','5584'),(3055,5650,'_menu_item_object_id','1972'),(3056,5650,'_menu_item_object','page'),(3057,5650,'_menu_item_target',''),(3058,5650,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3059,5650,'_menu_item_xfn',''),(3060,5650,'_menu_item_url',''),(3061,5650,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3062,5650,'_menu_item_ct_icon',''),(3063,5651,'_menu_item_type','post_type'),(3064,5651,'_menu_item_menu_item_parent','0'),(3065,5651,'_menu_item_object_id','132'),(3066,5651,'_menu_item_object','page'),(3067,5651,'_menu_item_target',''),(3068,5651,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3069,5651,'_menu_item_xfn',''),(3070,5651,'_menu_item_url',''),(3071,5651,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3072,5651,'_menu_item_ct_icon',''),(3073,5652,'_menu_item_type','post_type'),(3074,5652,'_menu_item_menu_item_parent','5651'),(3075,5652,'_menu_item_object_id','132'),(3076,5652,'_menu_item_object','page'),(3077,5652,'_menu_item_target',''),(3078,5652,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3079,5652,'_menu_item_xfn',''),(3080,5652,'_menu_item_url',''),(3081,5652,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3082,5652,'_menu_item_ct_icon',''),(3083,5653,'_menu_item_type','post_type'),(3084,5653,'_menu_item_menu_item_parent','5651'),(3085,5653,'_menu_item_object_id','123'),(3086,5653,'_menu_item_object','page'),(3087,5653,'_menu_item_target',''),(3088,5653,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3089,5653,'_menu_item_xfn',''),(3090,5653,'_menu_item_url',''),(3091,5653,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3092,5653,'_menu_item_ct_icon',''),(3093,5654,'_menu_item_type','post_type'),(3094,5654,'_menu_item_menu_item_parent','5656'),(3095,5654,'_menu_item_object_id','125'),(3096,5654,'_menu_item_object','page'),(3097,5654,'_menu_item_target',''),(3098,5654,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3099,5654,'_menu_item_xfn',''),(3100,5654,'_menu_item_url',''),(3101,5654,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3102,5654,'_menu_item_ct_icon',''),(3103,5655,'_menu_item_type','post_type'),(3104,5655,'_menu_item_menu_item_parent','5656'),(3105,5655,'_menu_item_object_id','127'),(3106,5655,'_menu_item_object','page'),(3107,5655,'_menu_item_target',''),(3108,5655,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3109,5655,'_menu_item_xfn',''),(3110,5655,'_menu_item_url',''),(3111,5655,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3112,5655,'_menu_item_ct_icon',''),(3113,5656,'_menu_item_type','post_type'),(3114,5656,'_menu_item_menu_item_parent','5651'),(3115,5656,'_menu_item_object_id','129'),(3116,5656,'_menu_item_object','page'),(3117,5656,'_menu_item_target',''),(3118,5656,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3119,5656,'_menu_item_xfn',''),(3120,5656,'_menu_item_url',''),(3121,5656,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3122,5656,'_menu_item_ct_icon',''),(3123,5657,'_menu_item_type','post_type'),(3124,5657,'_menu_item_menu_item_parent','5652'),(3125,5657,'_menu_item_object_id','134'),(3126,5657,'_menu_item_object','page'),(3127,5657,'_menu_item_target',''),(3128,5657,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3129,5657,'_menu_item_xfn',''),(3130,5657,'_menu_item_url',''),(3131,5657,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3132,5657,'_menu_item_ct_icon',''),(3133,5658,'_menu_item_type','post_type'),(3134,5658,'_menu_item_menu_item_parent','5652'),(3135,5658,'_menu_item_object_id','136'),(3136,5658,'_menu_item_object','page'),(3137,5658,'_menu_item_target',''),(3138,5658,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3139,5658,'_menu_item_xfn',''),(3140,5658,'_menu_item_url',''),(3141,5658,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3142,5658,'_menu_item_ct_icon',''),(3143,5659,'_menu_item_type','post_type'),(3144,5659,'_menu_item_menu_item_parent','5652'),(3145,5659,'_menu_item_object_id','132'),(3146,5659,'_menu_item_object','page'),(3147,5659,'_menu_item_target',''),(3148,5659,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3149,5659,'_menu_item_xfn',''),(3150,5659,'_menu_item_url',''),(3151,5659,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3152,5659,'_menu_item_ct_icon',''),(3153,5660,'_menu_item_type','post_type'),(3154,5660,'_menu_item_menu_item_parent','5656'),(3155,5660,'_menu_item_object_id','129'),(3156,5660,'_menu_item_object','page'),(3157,5660,'_menu_item_target',''),(3158,5660,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3159,5660,'_menu_item_xfn',''),(3160,5660,'_menu_item_url',''),(3161,5660,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3162,5660,'_menu_item_ct_icon',''),(3163,5661,'_menu_item_type','post_type'),(3164,5661,'_menu_item_menu_item_parent','5651'),(3165,5661,'_menu_item_object_id','161'),(3166,5661,'_menu_item_object','post'),(3167,5661,'_menu_item_target',''),(3168,5661,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3169,5661,'_menu_item_xfn',''),(3170,5661,'_menu_item_url',''),(3171,5661,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3172,5661,'_menu_item_ct_icon',''),(3173,5662,'_menu_item_type','post_type'),(3174,5662,'_menu_item_menu_item_parent','5661'),(3175,5662,'_menu_item_object_id','161'),(3176,5662,'_menu_item_object','post'),(3177,5662,'_menu_item_target',''),(3178,5662,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3179,5662,'_menu_item_xfn',''),(3180,5662,'_menu_item_url',''),(3181,5662,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3182,5662,'_menu_item_ct_icon',''),(3183,5663,'_menu_item_type','post_type'),(3184,5663,'_menu_item_menu_item_parent','5661'),(3185,5663,'_menu_item_object_id','159'),(3186,5663,'_menu_item_object','post'),(3187,5663,'_menu_item_target',''),(3188,5663,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3189,5663,'_menu_item_xfn',''),(3190,5663,'_menu_item_url',''),(3191,5663,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3192,5663,'_menu_item_ct_icon',''),(3193,5664,'_menu_item_type','post_type'),(3194,5664,'_menu_item_menu_item_parent','5661'),(3195,5664,'_menu_item_object_id','164'),(3196,5664,'_menu_item_object','post'),(3197,5664,'_menu_item_target',''),(3198,5664,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3199,5664,'_menu_item_xfn',''),(3200,5664,'_menu_item_url',''),(3201,5664,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3202,5664,'_menu_item_ct_icon',''),(3203,5665,'_menu_item_type','post_type'),(3204,5665,'_menu_item_menu_item_parent','0'),(3205,5665,'_menu_item_object_id','24'),(3206,5665,'_menu_item_object','page'),(3207,5665,'_menu_item_target',''),(3208,5665,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3209,5665,'_menu_item_xfn',''),(3210,5665,'_menu_item_url',''),(3211,5665,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3212,5665,'_menu_item_ct_icon',''),(3213,5666,'_menu_item_type','post_type'),(3214,5666,'_menu_item_menu_item_parent','5647'),(3215,5666,'_menu_item_object_id','3520'),(3216,5666,'_menu_item_object','page'),(3217,5666,'_menu_item_target',''),(3218,5666,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3219,5666,'_menu_item_xfn',''),(3220,5666,'_menu_item_url',''),(3221,5666,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3222,5666,'_menu_item_ct_icon',''),(3223,5667,'_menu_item_type','post_type'),(3224,5667,'_menu_item_menu_item_parent','5647'),(3225,5667,'_menu_item_object_id','3518'),(3226,5667,'_menu_item_object','page'),(3227,5667,'_menu_item_target',''),(3228,5667,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3229,5667,'_menu_item_xfn',''),(3230,5667,'_menu_item_url',''),(3231,5667,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3232,5667,'_menu_item_ct_icon',''),(3233,5668,'_menu_item_type','post_type'),(3234,5668,'_menu_item_menu_item_parent','5647'),(3235,5668,'_menu_item_object_id','3516'),(3236,5668,'_menu_item_object','page'),(3237,5668,'_menu_item_target',''),(3238,5668,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3239,5668,'_menu_item_xfn',''),(3240,5668,'_menu_item_url',''),(3241,5668,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3242,5668,'_menu_item_ct_icon',''),(3243,5669,'_menu_item_type','post_type'),(3244,5669,'_menu_item_menu_item_parent','5646'),(3245,5669,'_menu_item_object_id','3504'),(3246,5669,'_menu_item_object','page'),(3247,5669,'_menu_item_target',''),(3248,5669,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3249,5669,'_menu_item_xfn',''),(3250,5669,'_menu_item_url',''),(3251,5669,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3252,5669,'_menu_item_ct_icon',''),(3253,5670,'_menu_item_type','post_type'),(3254,5670,'_menu_item_menu_item_parent','5649'),(3255,5670,'_menu_item_object_id','3502'),(3256,5670,'_menu_item_object','page'),(3257,5670,'_menu_item_target',''),(3258,5670,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3259,5670,'_menu_item_xfn',''),(3260,5670,'_menu_item_url',''),(3261,5670,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3262,5670,'_menu_item_ct_icon',''),(3263,5671,'_menu_item_type','post_type'),(3264,5671,'_menu_item_menu_item_parent','5649'),(3265,5671,'_menu_item_object_id','3500'),(3266,5671,'_menu_item_object','page'),(3267,5671,'_menu_item_target',''),(3268,5671,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3269,5671,'_menu_item_xfn',''),(3270,5671,'_menu_item_url',''),(3271,5671,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3272,5671,'_menu_item_ct_icon',''),(3273,5672,'_menu_item_type','post_type'),(3274,5672,'_menu_item_menu_item_parent','5649'),(3275,5672,'_menu_item_object_id','3497'),(3276,5672,'_menu_item_object','page'),(3277,5672,'_menu_item_target',''),(3278,5672,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3279,5672,'_menu_item_xfn',''),(3280,5672,'_menu_item_url',''),(3281,5672,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3282,5672,'_menu_item_ct_icon',''),(3283,5673,'_menu_item_type','post_type'),(3284,5673,'_menu_item_menu_item_parent','5644'),(3285,5673,'_menu_item_object_id','3495'),(3286,5673,'_menu_item_object','page'),(3287,5673,'_menu_item_target',''),(3288,5673,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3289,5673,'_menu_item_xfn',''),(3290,5673,'_menu_item_url',''),(3291,5673,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3292,5673,'_menu_item_ct_icon',''),(3293,5674,'_menu_item_type','post_type'),(3294,5674,'_menu_item_menu_item_parent','5644'),(3295,5674,'_menu_item_object_id','3493'),(3296,5674,'_menu_item_object','page'),(3297,5674,'_menu_item_target',''),(3298,5674,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3299,5674,'_menu_item_xfn',''),(3300,5674,'_menu_item_url',''),(3301,5674,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3302,5674,'_menu_item_ct_icon',''),(3303,5675,'_menu_item_type','post_type'),(3304,5675,'_menu_item_menu_item_parent','5644'),(3305,5675,'_menu_item_object_id','3491'),(3306,5675,'_menu_item_object','page'),(3307,5675,'_menu_item_target',''),(3308,5675,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3309,5675,'_menu_item_xfn',''),(3310,5675,'_menu_item_url',''),(3311,5675,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3312,5675,'_menu_item_ct_icon',''),(3313,5676,'_menu_item_type','post_type'),(3314,5676,'_menu_item_menu_item_parent','5644'),(3315,5676,'_menu_item_object_id','26'),(3316,5676,'_menu_item_object','page'),(3317,5676,'_menu_item_target',''),(3318,5676,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3319,5676,'_menu_item_xfn',''),(3320,5676,'_menu_item_url',''),(3321,5676,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3322,5676,'_menu_item_ct_icon',''),(3323,5677,'_menu_item_type','post_type'),(3324,5677,'_menu_item_menu_item_parent','5646'),(3325,5677,'_menu_item_object_id','32'),(3326,5677,'_menu_item_object','page'),(3327,5677,'_menu_item_target',''),(3328,5677,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3329,5677,'_menu_item_xfn',''),(3330,5677,'_menu_item_url',''),(3331,5677,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3332,5677,'_menu_item_ct_icon',''),(3333,5678,'_menu_item_type','post_type'),(3334,5678,'_menu_item_menu_item_parent','5647'),(3335,5678,'_menu_item_object_id','28'),(3336,5678,'_menu_item_object','page'),(3337,5678,'_menu_item_target',''),(3338,5678,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3339,5678,'_menu_item_xfn',''),(3340,5678,'_menu_item_url',''),(3341,5678,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3342,5678,'_menu_item_ct_icon',''),(3343,5679,'_menu_item_type','post_type'),(3344,5679,'_menu_item_menu_item_parent','5649'),(3345,5679,'_menu_item_object_id','367'),(3346,5679,'_menu_item_object','page'),(3347,5679,'_menu_item_target',''),(3348,5679,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3349,5679,'_menu_item_xfn',''),(3350,5679,'_menu_item_url',''),(3351,5679,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3352,5679,'_menu_item_ct_icon',''),(3353,5680,'_menu_item_type','post_type'),(3354,5680,'_menu_item_menu_item_parent','5665'),(3355,5680,'_menu_item_object_id','24'),(3356,5680,'_menu_item_object','page'),(3357,5680,'_menu_item_target',''),(3358,5680,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3359,5680,'_menu_item_xfn',''),(3360,5680,'_menu_item_url',''),(3361,5680,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3362,5680,'_menu_item_ct_icon',''),(3363,5681,'_menu_item_type','post_type'),(3364,5681,'_menu_item_menu_item_parent','5665'),(3365,5681,'_menu_item_object_id','3510'),(3366,5681,'_menu_item_object','page'),(3367,5681,'_menu_item_target',''),(3368,5681,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3369,5681,'_menu_item_xfn',''),(3370,5681,'_menu_item_url',''),(3371,5681,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3372,5681,'_menu_item_ct_icon',''),(3373,5682,'_menu_item_type','post_type'),(3374,5682,'_menu_item_menu_item_parent','5665'),(3375,5682,'_menu_item_object_id','3512'),(3376,5682,'_menu_item_object','page'),(3377,5682,'_menu_item_target',''),(3378,5682,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3379,5682,'_menu_item_xfn',''),(3380,5682,'_menu_item_url',''),(3381,5682,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3382,5682,'_menu_item_ct_icon',''),(3383,5683,'_menu_item_type','post_type'),(3384,5683,'_menu_item_menu_item_parent','5665'),(3385,5683,'_menu_item_object_id','3514'),(3386,5683,'_menu_item_object','page'),(3387,5683,'_menu_item_target',''),(3388,5683,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3389,5683,'_menu_item_xfn',''),(3390,5683,'_menu_item_url',''),(3391,5683,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3392,5683,'_menu_item_ct_icon',''),(3393,5684,'_menu_item_type','post_type'),(3394,5684,'_menu_item_menu_item_parent','5602'),(3395,5684,'_menu_item_object_id','3520'),(3396,5684,'_menu_item_object','page'),(3397,5684,'_menu_item_target',''),(3398,5684,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3399,5684,'_menu_item_xfn',''),(3400,5684,'_menu_item_url',''),(3401,5684,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3402,5684,'_menu_item_ct_icon',''),(3403,5685,'_menu_item_type','post_type'),(3404,5685,'_menu_item_menu_item_parent','5602'),(3405,5685,'_menu_item_object_id','3518'),(3406,5685,'_menu_item_object','page'),(3407,5685,'_menu_item_target',''),(3408,5685,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3409,5685,'_menu_item_xfn',''),(3410,5685,'_menu_item_url',''),(3411,5685,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3412,5685,'_menu_item_ct_icon',''),(3413,5686,'_menu_item_type','post_type'),(3414,5686,'_menu_item_menu_item_parent','5602'),(3415,5686,'_menu_item_object_id','3516'),(3416,5686,'_menu_item_object','page'),(3417,5686,'_menu_item_target',''),(3418,5686,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3419,5686,'_menu_item_xfn',''),(3420,5686,'_menu_item_url',''),(3421,5686,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3422,5686,'_menu_item_ct_icon',''),(3423,5687,'_menu_item_type','post_type'),(3424,5687,'_menu_item_menu_item_parent','5604'),(3425,5687,'_menu_item_object_id','3514'),(3426,5687,'_menu_item_object','page'),(3427,5687,'_menu_item_target',''),(3428,5687,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3429,5687,'_menu_item_xfn',''),(3430,5687,'_menu_item_url',''),(3431,5687,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3432,5687,'_menu_item_ct_icon',''),(3433,5688,'_menu_item_type','post_type'),(3434,5688,'_menu_item_menu_item_parent','5604'),(3435,5688,'_menu_item_object_id','3512'),(3436,5688,'_menu_item_object','page'),(3437,5688,'_menu_item_target',''),(3438,5688,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3439,5688,'_menu_item_xfn',''),(3440,5688,'_menu_item_url',''),(3441,5688,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3442,5688,'_menu_item_ct_icon',''),(3443,5689,'_menu_item_type','post_type'),(3444,5689,'_menu_item_menu_item_parent','5604'),(3445,5689,'_menu_item_object_id','3510'),(3446,5689,'_menu_item_object','page'),(3447,5689,'_menu_item_target',''),(3448,5689,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3449,5689,'_menu_item_xfn',''),(3450,5689,'_menu_item_url',''),(3451,5689,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3452,5689,'_menu_item_ct_icon',''),(3453,5690,'_menu_item_type','post_type'),(3454,5690,'_menu_item_menu_item_parent','5600'),(3455,5690,'_menu_item_object_id','3504'),(3456,5690,'_menu_item_object','page'),(3457,5690,'_menu_item_target',''),(3458,5690,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3459,5690,'_menu_item_xfn',''),(3460,5690,'_menu_item_url',''),(3461,5690,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3462,5690,'_menu_item_ct_icon',''),(3463,5691,'_menu_item_type','post_type'),(3464,5691,'_menu_item_menu_item_parent','5623'),(3465,5691,'_menu_item_object_id','3502'),(3466,5691,'_menu_item_object','page'),(3467,5691,'_menu_item_target',''),(3468,5691,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3469,5691,'_menu_item_xfn',''),(3470,5691,'_menu_item_url',''),(3471,5691,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3472,5691,'_menu_item_ct_icon',''),(3473,5692,'_menu_item_type','post_type'),(3474,5692,'_menu_item_menu_item_parent','5623'),(3475,5692,'_menu_item_object_id','3500'),(3476,5692,'_menu_item_object','page'),(3477,5692,'_menu_item_target',''),(3478,5692,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3479,5692,'_menu_item_xfn',''),(3480,5692,'_menu_item_url',''),(3481,5692,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3482,5692,'_menu_item_ct_icon',''),(3483,5693,'_menu_item_type','post_type'),(3484,5693,'_menu_item_menu_item_parent','5623'),(3485,5693,'_menu_item_object_id','3497'),(3486,5693,'_menu_item_object','page'),(3487,5693,'_menu_item_target',''),(3488,5693,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3489,5693,'_menu_item_xfn',''),(3490,5693,'_menu_item_url',''),(3491,5693,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3492,5693,'_menu_item_ct_icon',''),(3493,5694,'_menu_item_type','post_type'),(3494,5694,'_menu_item_menu_item_parent','5603'),(3495,5694,'_menu_item_object_id','3495'),(3496,5694,'_menu_item_object','page'),(3497,5694,'_menu_item_target',''),(3498,5694,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3499,5694,'_menu_item_xfn',''),(3500,5694,'_menu_item_url',''),(3501,5694,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3502,5694,'_menu_item_ct_icon',''),(3503,5695,'_menu_item_type','post_type'),(3504,5695,'_menu_item_menu_item_parent','5603'),(3505,5695,'_menu_item_object_id','3493'),(3506,5695,'_menu_item_object','page'),(3507,5695,'_menu_item_target',''),(3508,5695,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3509,5695,'_menu_item_xfn',''),(3510,5695,'_menu_item_url',''),(3511,5695,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3512,5695,'_menu_item_ct_icon',''),(3513,5696,'_menu_item_type','post_type'),(3514,5696,'_menu_item_menu_item_parent','5603'),(3515,5696,'_menu_item_object_id','3491'),(3516,5696,'_menu_item_object','page'),(3517,5696,'_menu_item_target',''),(3518,5696,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3519,5696,'_menu_item_xfn',''),(3520,5696,'_menu_item_url',''),(3521,5696,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3522,5696,'_menu_item_ct_icon',''),(3523,5697,'_menu_item_type','post_type'),(3524,5697,'_menu_item_menu_item_parent','5603'),(3525,5697,'_menu_item_object_id','26'),(3526,5697,'_menu_item_object','page'),(3527,5697,'_menu_item_target',''),(3528,5697,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3529,5697,'_menu_item_xfn',''),(3530,5697,'_menu_item_url',''),(3531,5697,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3532,5697,'_menu_item_ct_icon',''),(3533,5698,'_menu_item_type','post_type'),(3534,5698,'_menu_item_menu_item_parent','5604'),(3535,5698,'_menu_item_object_id','24'),(3536,5698,'_menu_item_object','page'),(3537,5698,'_menu_item_target',''),(3538,5698,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3539,5698,'_menu_item_xfn',''),(3540,5698,'_menu_item_url',''),(3541,5698,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3542,5698,'_menu_item_ct_icon',''),(3543,5699,'_menu_item_type','post_type'),(3544,5699,'_menu_item_menu_item_parent','5600'),(3545,5699,'_menu_item_object_id','32'),(3546,5699,'_menu_item_object','page'),(3547,5699,'_menu_item_target',''),(3548,5699,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3549,5699,'_menu_item_xfn',''),(3550,5699,'_menu_item_url',''),(3551,5699,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3552,5699,'_menu_item_ct_icon',''),(3553,5700,'_menu_item_type','post_type'),(3554,5700,'_menu_item_menu_item_parent','5602'),(3555,5700,'_menu_item_object_id','28'),(3556,5700,'_menu_item_object','page'),(3557,5700,'_menu_item_target',''),(3558,5700,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3559,5700,'_menu_item_xfn',''),(3560,5700,'_menu_item_url',''),(3561,5700,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3562,5700,'_menu_item_ct_icon',''),(3563,5701,'_menu_item_type','post_type'),(3564,5701,'_menu_item_menu_item_parent','5623'),(3565,5701,'_menu_item_object_id','367'),(3566,5701,'_menu_item_object','page'),(3567,5701,'_menu_item_target',''),(3568,5701,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3569,5701,'_menu_item_xfn',''),(3570,5701,'_menu_item_url',''),(3571,5701,'_elementor_controls_usage','s:6:\"a:0:{}\";'),(3572,5701,'_menu_item_ct_icon',''),(3573,5702,'_menu_item_type','post_type'),(3574,5702,'_menu_item_menu_item_parent','5624'),(3575,5702,'_menu_item_object_id','2627'),(3576,5702,'_menu_item_object','service'),(3577,5702,'_menu_item_target',''),(3578,5702,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3579,5702,'_menu_item_xfn',''),(3580,5702,'_menu_item_url',''),(3581,5702,'_menu_item_ct_icon',''),(3582,5703,'_menu_item_type','post_type'),(3583,5703,'_menu_item_menu_item_parent','5624'),(3584,5703,'_menu_item_object_id','2625'),(3585,5703,'_menu_item_object','service'),(3586,5703,'_menu_item_target',''),(3587,5703,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3588,5703,'_menu_item_xfn',''),(3589,5703,'_menu_item_url',''),(3590,5703,'_menu_item_ct_icon',''),(3591,5704,'_menu_item_type','post_type'),(3592,5704,'_menu_item_menu_item_parent','5626'),(3593,5704,'_menu_item_object_id','4359'),(3594,5704,'_menu_item_object','page'),(3595,5704,'_menu_item_target',''),(3596,5704,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3597,5704,'_menu_item_xfn',''),(3598,5704,'_menu_item_url',''),(3599,5704,'_menu_item_ct_icon',''),(3600,5705,'_menu_item_type','post_type'),(3601,5705,'_menu_item_menu_item_parent','5626'),(3602,5705,'_menu_item_object_id','4357'),(3603,5705,'_menu_item_object','page'),(3604,5705,'_menu_item_target',''),(3605,5705,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3606,5705,'_menu_item_xfn',''),(3607,5705,'_menu_item_url',''),(3608,5705,'_menu_item_ct_icon',''),(3609,5706,'_menu_item_type','post_type'),(3610,5706,'_menu_item_menu_item_parent','5626'),(3611,5706,'_menu_item_object_id','4355'),(3612,5706,'_menu_item_object','page'),(3613,5706,'_menu_item_target',''),(3614,5706,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3615,5706,'_menu_item_xfn',''),(3616,5706,'_menu_item_url',''),(3617,5706,'_menu_item_ct_icon',''),(3618,5707,'_menu_item_type','post_type'),(3619,5707,'_menu_item_menu_item_parent','5626'),(3620,5707,'_menu_item_object_id','415'),(3621,5707,'_menu_item_object','page'),(3622,5707,'_menu_item_target',''),(3623,5707,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3624,5707,'_menu_item_xfn',''),(3625,5707,'_menu_item_url',''),(3626,5707,'_menu_item_ct_icon',''),(3627,5708,'_menu_item_type','post_type'),(3628,5708,'_menu_item_menu_item_parent','5584'),(3629,5708,'_menu_item_object_id','748'),(3630,5708,'_menu_item_object','page'),(3631,5708,'_menu_item_target',''),(3632,5708,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3633,5708,'_menu_item_xfn',''),(3634,5708,'_menu_item_url',''),(3635,5708,'_menu_item_ct_icon',''),(3636,5709,'_menu_item_type','post_type'),(3637,5709,'_menu_item_menu_item_parent','5715'),(3638,5709,'_menu_item_object_id','417'),(3639,5709,'_menu_item_object','page'),(3640,5709,'_menu_item_target',''),(3641,5709,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3642,5709,'_menu_item_xfn',''),(3643,5709,'_menu_item_url',''),(3644,5709,'_menu_item_ct_icon',''),(3645,5710,'_menu_item_type','post_type'),(3646,5710,'_menu_item_menu_item_parent','5716'),(3647,5710,'_menu_item_object_id','4359'),(3648,5710,'_menu_item_object','page'),(3649,5710,'_menu_item_target',''),(3650,5710,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3651,5710,'_menu_item_xfn',''),(3652,5710,'_menu_item_url',''),(3653,5710,'_menu_item_ct_icon',''),(3654,5711,'_menu_item_type','post_type'),(3655,5711,'_menu_item_menu_item_parent','5716'),(3656,5711,'_menu_item_object_id','4357'),(3657,5711,'_menu_item_object','page'),(3658,5711,'_menu_item_target',''),(3659,5711,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3660,5711,'_menu_item_xfn',''),(3661,5711,'_menu_item_url',''),(3662,5711,'_menu_item_ct_icon',''),(3663,5712,'_menu_item_type','post_type'),(3664,5712,'_menu_item_menu_item_parent','5716'),(3665,5712,'_menu_item_object_id','4355'),(3666,5712,'_menu_item_object','page'),(3667,5712,'_menu_item_target',''),(3668,5712,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3669,5712,'_menu_item_xfn',''),(3670,5712,'_menu_item_url',''),(3671,5712,'_menu_item_ct_icon',''),(3672,5713,'_menu_item_type','post_type'),(3673,5713,'_menu_item_menu_item_parent','5716'),(3674,5713,'_menu_item_object_id','415'),(3675,5713,'_menu_item_object','page'),(3676,5713,'_menu_item_target',''),(3677,5713,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3678,5713,'_menu_item_xfn',''),(3679,5713,'_menu_item_url',''),(3680,5713,'_menu_item_ct_icon',''),(3681,5714,'_menu_item_type','post_type'),(3682,5714,'_menu_item_menu_item_parent','5715'),(3683,5714,'_menu_item_object_id','1740'),(3684,5714,'_menu_item_object','portfolio'),(3685,5714,'_menu_item_target',''),(3686,5714,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3687,5714,'_menu_item_xfn',''),(3688,5714,'_menu_item_url',''),(3689,5714,'_menu_item_ct_icon',''),(3690,5715,'_menu_item_type','post_type'),(3691,5715,'_menu_item_menu_item_parent','0'),(3692,5715,'_menu_item_object_id','415'),(3693,5715,'_menu_item_object','page'),(3694,5715,'_menu_item_target',''),(3695,5715,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3696,5715,'_menu_item_xfn',''),(3697,5715,'_menu_item_url',''),(3698,5715,'_menu_item_ct_icon',''),(3699,5716,'_menu_item_type','post_type'),(3700,5716,'_menu_item_menu_item_parent','5715'),(3701,5716,'_menu_item_object_id','415'),(3702,5716,'_menu_item_object','page'),(3703,5716,'_menu_item_target',''),(3704,5716,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3705,5716,'_menu_item_xfn',''),(3706,5716,'_menu_item_url',''),(3707,5716,'_menu_item_ct_icon',''),(3708,5717,'_menu_item_type','post_type'),(3709,5717,'_menu_item_menu_item_parent','5643'),(3710,5717,'_menu_item_object_id','446'),(3711,5717,'_menu_item_object','service'),(3712,5717,'_menu_item_target',''),(3713,5717,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3714,5717,'_menu_item_xfn',''),(3715,5717,'_menu_item_url',''),(3716,5717,'_menu_item_ct_icon',''),(3717,5718,'_menu_item_type','post_type'),(3718,5718,'_menu_item_menu_item_parent','5643'),(3719,5718,'_menu_item_object_id','2627'),(3720,5718,'_menu_item_object','service'),(3721,5718,'_menu_item_target',''),(3722,5718,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3723,5718,'_menu_item_xfn',''),(3724,5718,'_menu_item_url',''),(3725,5718,'_menu_item_ct_icon',''),(3726,5719,'_menu_item_type','post_type'),(3727,5719,'_menu_item_menu_item_parent','5643'),(3728,5719,'_menu_item_object_id','2625'),(3729,5719,'_menu_item_object','service'),(3730,5719,'_menu_item_target',''),(3731,5719,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3732,5719,'_menu_item_xfn',''),(3733,5719,'_menu_item_url',''),(3734,5719,'_menu_item_ct_icon',''),(3735,5720,'_menu_item_type','post_type'),(3736,5720,'_menu_item_menu_item_parent','5643'),(3737,5720,'_menu_item_object_id','651'),(3738,5720,'_menu_item_object','service'),(3739,5720,'_menu_item_target',''),(3740,5720,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3741,5720,'_menu_item_xfn',''),(3742,5720,'_menu_item_url',''),(3743,5720,'_menu_item_ct_icon',''),(3744,5721,'_menu_item_type','post_type'),(3745,5721,'_menu_item_menu_item_parent','5624'),(3746,5721,'_menu_item_object_id','446'),(3747,5721,'_menu_item_object','service'),(3748,5721,'_menu_item_target',''),(3749,5721,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3750,5721,'_menu_item_xfn',''),(3751,5721,'_menu_item_url',''),(3752,5721,'_menu_item_ct_icon',''),(3753,5722,'_menu_item_type','post_type'),(3754,5722,'_menu_item_menu_item_parent','5643'),(3755,5722,'_menu_item_object_id','649'),(3756,5722,'_menu_item_object','service'),(3757,5722,'_menu_item_target',''),(3758,5722,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3759,5722,'_menu_item_xfn',''),(3760,5722,'_menu_item_url',''),(3761,5722,'_menu_item_ct_megaprofile','0'),(3762,5722,'_menu_item_ct_icon',''),(3763,5722,'_menu_item_ct_onepage','no-one-page'),(3764,5722,'_menu_item_ct_onepage_offset',''),(3765,5723,'_menu_item_type','post_type'),(3766,5723,'_menu_item_menu_item_parent','5584'),(3767,5723,'_menu_item_object_id','407'),(3768,5723,'_menu_item_object','page'),(3769,5723,'_menu_item_target',''),(3770,5723,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3771,5723,'_menu_item_xfn',''),(3772,5723,'_menu_item_url',''),(3773,5723,'_menu_item_ct_megaprofile','0'),(3774,5723,'_menu_item_ct_icon',''),(3775,5723,'_menu_item_ct_onepage','no-one-page'),(3776,5723,'_menu_item_ct_onepage_offset',''),(3777,5724,'_menu_item_type','post_type'),(3778,5724,'_menu_item_menu_item_parent','5544'),(3779,5724,'_menu_item_object_id','407'),(3780,5724,'_menu_item_object','page'),(3781,5724,'_menu_item_target',''),(3782,5724,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3783,5724,'_menu_item_xfn',''),(3784,5724,'_menu_item_url',''),(3785,5724,'_menu_item_ct_megaprofile','0'),(3786,5724,'_menu_item_ct_icon',''),(3787,5724,'_menu_item_ct_onepage','no-one-page'),(3788,5724,'_menu_item_ct_onepage_offset',''),(3789,5725,'_menu_item_type','post_type'),(3790,5725,'_menu_item_menu_item_parent','5624'),(3791,5725,'_menu_item_object_id','649'),(3792,5725,'_menu_item_object','service'),(3793,5725,'_menu_item_target',''),(3794,5725,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3795,5725,'_menu_item_xfn',''),(3796,5725,'_menu_item_url',''),(3797,5725,'_menu_item_ct_megaprofile','0'),(3798,5725,'_menu_item_ct_icon',''),(3799,5725,'_menu_item_ct_onepage','no-one-page'),(3800,5725,'_menu_item_ct_onepage_offset',''),(4522,5824,'_wp_page_template','default'),(4523,5824,'_elementor_edit_mode','builder'),(4524,5824,'_elementor_template_type','wp-page'),(4525,5824,'_elementor_version','2.9.7'),(4526,5824,'_elementor_data','[{\"id\":\"92cad44\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bd8afcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9da93fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019re a global stakeholder relations and consultancy.\",\"sub_title\":\"About us\",\"sub_title_color\":\"#595959\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_family\":\"Roboto\",\"sub_title_typography_font_weight\":\"400\",\"title_space_bottom\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"_css_classes\":\"line-sub-preset2\",\"ct_animate\":\"wow bounce\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"53fc2b3\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"30e5f8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"809e82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"fbdc553\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(4437,5812,'_wp_page_template','default'),(4438,5812,'_elementor_edit_mode','builder'),(4439,5812,'_elementor_template_type','wp-page'),(4440,5812,'_elementor_version','2.9.7'),(4415,5809,'_wp_page_template','default'),(4345,5796,'_wp_page_template','default'),(3982,5733,'_elementor_edit_mode','builder'),(3983,5733,'_elementor_template_type','wp-page'),(3984,5733,'_elementor_version','3.0.11'),(3985,5733,'_wp_page_template','default'),(3986,5733,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3801,5534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1553;s:6:\"height\";i:960;s:4:\"file\";s:20:\"2019/11/ud-blog1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ud-blog1-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"ud-blog1-1024x633.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ud-blog1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"ud-blog1-768x475.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"ud-blog1-1536x949.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:949;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"ud-blog1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"ud-blog1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"ud-blog1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"ud-blog1-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"ud-blog1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"ud-blog1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"ud-blog1-600x371.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"ud-blog1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3802,5516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:96;s:6:\"height\";i:96;s:4:\"file\";s:29:\"2020/10/ud-testimonial-03.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3803,5515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:96;s:6:\"height\";i:96;s:4:\"file\";s:29:\"2020/10/ud-testimonial-02.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3804,5514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:29:\"2020/10/ud-testimonial-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3805,5489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:725;s:4:\"file\";s:25:\"2020/10/bg-section-04.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-04-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1024x387.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:387;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-768x290.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:290;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1536x580.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:580;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x227.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x227.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3806,5478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:709;s:4:\"file\";s:25:\"2020/10/bg-section-03.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-03-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-03-1024x378.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-03-768x284.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-03-1536x567.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-03-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x222.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x222.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3807,5460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:773;s:6:\"height\";i:390;s:4:\"file\";s:23:\"2020/10/section-map.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"section-map-300x151.png\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"section-map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"section-map-768x387.png\";s:5:\"width\";i:768;s:6:\"height\";i:387;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"section-map-773x313.png\";s:5:\"width\";i:773;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"section-map-600x390.png\";s:5:\"width\";i:600;s:6:\"height\";i:390;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"section-map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"section-map-600x303.png\";s:5:\"width\";i:600;s:6:\"height\";i:303;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"section-map-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"section-map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"section-map-600x303.png\";s:5:\"width\";i:600;s:6:\"height\";i:303;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"section-map-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3808,5458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:85;s:6:\"height\";i:91;s:4:\"file\";s:19:\"2020/10/flag-05.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3809,5457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:85;s:6:\"height\";i:91;s:4:\"file\";s:19:\"2020/10/flag-04.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3810,5456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:85;s:6:\"height\";i:91;s:4:\"file\";s:19:\"2020/10/flag-03.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3811,5455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:85;s:6:\"height\";i:91;s:4:\"file\";s:19:\"2020/10/flag-02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3812,5454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:85;s:6:\"height\";i:91;s:4:\"file\";s:19:\"2020/10/flag-01.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3813,5440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:408;s:4:\"file\";s:20:\"2020/10/women-01.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"women-01-221x300.png\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"women-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"women-01-300x313.png\";s:5:\"width\";i:300;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"women-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"women-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"women-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"women-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3814,5413,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1018;s:4:\"file\";s:25:\"2020/10/bg-section-02.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-02-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-02-1024x543.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-02-768x407.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:407;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-02-1536x814.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:814;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x318.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x318.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3815,5398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:870;s:4:\"file\";s:28:\"2020/10/bg-section-01_02.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-300x136.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"bg-section-01_02-1024x464.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-768x348.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"bg-section-01_02-1536x696.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"bg-section-01_02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-600x272.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"bg-section-01_02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3816,5389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:469;s:6:\"height\";i:388;s:4:\"file\";s:21:\"2020/10/banner-01.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-01-300x248.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"banner-01-469x313.jpg\";s:5:\"width\";i:469;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"banner-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3817,5377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:26:\"2020/10/bg-fancybox-01.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"bg-fancybox-01-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"bg-fancybox-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"bg-fancybox-01-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"bg-fancybox-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"bg-fancybox-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"bg-fancybox-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"bg-fancybox-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3818,5374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:710;s:4:\"file\";s:24:\"2020/10/bg-slider-03.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bg-slider-03-1024x379.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-768x284.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"bg-slider-03-1536x568.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"bg-slider-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-600x222.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-600x222.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3819,5373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:710;s:4:\"file\";s:24:\"2020/10/bg-slider-02.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bg-slider-02-1024x379.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-768x284.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"bg-slider-02-1536x568.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"bg-slider-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-600x222.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-600x222.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3820,5370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:710;s:4:\"file\";s:24:\"2020/10/bg-slider-01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"bg-slider-01-1024x379.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-768x284.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"bg-slider-01-1536x568.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"bg-slider-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-600x222.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-600x222.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-slider-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3821,5365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:171;s:6:\"height\";i:171;s:4:\"file\";s:23:\"2019/10/logo-footer.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-footer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3822,5346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:40;s:4:\"file\";s:19:\"2020/10/favicon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3823,5345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:675;s:6:\"height\";i:147;s:4:\"file\";s:16:\"2020/10/logo.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"logo-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x147.png\";s:5:\"width\";i:150;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:16:\"logo-600x147.png\";s:5:\"width\";i:600;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"logo-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"logo-600x131.png\";s:5:\"width\";i:600;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-250x147.png\";s:5:\"width\";i:250;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"logo-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"logo-600x131.png\";s:5:\"width\";i:600;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-250x147.png\";s:5:\"width\";i:250;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3824,4963,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:137;s:6:\"height\";i:72;s:4:\"file\";s:23:\"2020/06/client-img5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3825,4962,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:89;s:6:\"height\";i:85;s:4:\"file\";s:23:\"2020/06/client-img4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3826,4961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:64;s:4:\"file\";s:23:\"2020/06/client-img3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3827,4960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:82;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2020/06/client-img2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3828,4959,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:23:\"2020/06/client-img1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3829,4805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:560;s:4:\"file\";s:32:\"2019/12/corporate-portfolio5.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"corporate-portfolio5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio5-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3830,4804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:560;s:4:\"file\";s:32:\"2019/12/corporate-portfolio4.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"corporate-portfolio4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio4-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3831,4803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:560;s:4:\"file\";s:32:\"2019/12/corporate-portfolio3.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-768x538.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-800x313.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"corporate-portfolio3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-600x420.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio3-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3832,4802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:560;s:4:\"file\";s:32:\"2019/12/corporate-portfolio2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"corporate-portfolio2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio2-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3833,4801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:650;s:4:\"file\";s:32:\"2019/12/corporate-portfolio1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"corporate-portfolio1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-600x390.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-600x390.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"corporate-portfolio1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3834,4716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2020/03/update-service-02.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"update-service-02-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"update-service-02-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"update-service-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"update-service-02-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"update-service-02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"update-service-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"update-service-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"update-service-02-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"update-service-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"update-service-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"update-service-02-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"update-service-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;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:14:\"Matej Kastelic\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3835,4715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2020/03/update-service-01.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"update-service-01-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"update-service-01-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"update-service-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"update-service-01-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"update-service-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"update-service-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"update-service-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"update-service-01-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"update-service-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"update-service-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"update-service-01-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"update-service-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3836,4705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/11/update-blog3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"update-blog3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"update-blog3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"update-blog3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"update-blog3-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"update-blog3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"update-blog3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"update-blog3-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog3-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"update-blog3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"update-blog3-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog3-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3837,4704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/11/update-blog2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"update-blog2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"update-blog2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"update-blog2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"update-blog2-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"update-blog2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"update-blog2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"update-blog2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog2-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"update-blog2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"update-blog2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog2-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3838,4703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/11/update-blog1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"update-blog1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"update-blog1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"update-blog1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"update-blog1-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"update-blog1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"update-blog1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"update-blog1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"update-blog1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"update-blog1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"update-blog1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;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:14:\"Matej Kastelic\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3839,4639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:574;s:4:\"file\";s:27:\"2020/05/bg-page-title-u.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"bg-page-title-u-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"bg-page-title-u-1024x306.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"bg-page-title-u-1536x459.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:459;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"bg-page-title-u-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-600x179.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-600x179.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-page-title-u-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3840,3852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:538;s:6:\"height\";i:368;s:4:\"file\";s:22:\"2020/02/contact-v4.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"contact-v4-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-v4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"contact-v4-538x313.png\";s:5:\"width\";i:538;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"contact-v4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-v4-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"contact-v4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-v4-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3841,3681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:165;s:6:\"height\";i:278;s:4:\"file\";s:25:\"2020/02/about4-shape1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"about4-shape1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3842,3679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:545;s:6:\"height\";i:464;s:4:\"file\";s:21:\"2020/02/h4-about1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"h4-about1-545x313.png\";s:5:\"width\";i:545;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-545x450.png\";s:5:\"width\";i:545;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h4-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"h4-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3843,3669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2020/02/about4-bg-section1.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"about4-bg-section1-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"about4-bg-section1-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"about4-bg-section1-1536x400.png\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"about4-bg-section1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-600x156.png\";s:5:\"width\";i:600;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-600x156.png\";s:5:\"width\";i:600;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"about4-bg-section1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3844,3665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:46;s:4:\"file\";s:24:\"2020/02/about4-icon3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3845,3664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:44;s:6:\"height\";i:48;s:4:\"file\";s:24:\"2020/02/about4-icon2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3846,3663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:48;s:6:\"height\";i:43;s:4:\"file\";s:24:\"2020/02/about4-icon1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3847,3628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:430;s:4:\"file\";s:28:\"2020/02/about-section-01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"about-section-01-300x67.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"about-section-01-1024x229.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"about-section-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"about-section-01-768x172.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"about-section-01-1536x344.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"about-section-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"about-section-01-600x430.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"about-section-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"about-section-01-600x134.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"about-section-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"about-section-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"about-section-01-600x134.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"about-section-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3848,3614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:900;s:4:\"file\";s:19:\"2020/02/theme23.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"theme23-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"theme23-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"theme23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"theme23-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"theme23-1536x720.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:19:\"theme23-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:19:\"theme23-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"theme23-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"theme23-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"theme23-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"theme23-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"theme23-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"theme23-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3849,3411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:691;s:4:\"file\";s:28:\"2020/02/h6-bg-section-02.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-300x108.png\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-02-1024x369.png\";s:5:\"width\";i:1024;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-768x276.png\";s:5:\"width\";i:768;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-02-1536x553.png\";s:5:\"width\";i:1536;s:6:\"height\";i:553;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h6-bg-section-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-600x216.png\";s:5:\"width\";i:600;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-600x216.png\";s:5:\"width\";i:600;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3850,3401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team4.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team4-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h6-team4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team4-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"h6-team4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team4-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3851,3400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team3.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team3-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h6-team3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team3-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"h6-team3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team3-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3852,3399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:20:\"2020/02/h6-team2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team2-450x313.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h6-team2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team2-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"h6-team2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team2-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3853,3383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2020/02/h6-team1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h6-team1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"h6-team1-350x313.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h6-team1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"h6-team1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h6-team1-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3854,3282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:697;s:4:\"file\";s:28:\"2020/01/h6-bg-section-01.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-300x109.png\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-01-1024x372.png\";s:5:\"width\";i:1024;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-768x279.png\";s:5:\"width\";i:768;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h6-bg-section-01-1536x558.png\";s:5:\"width\";i:1536;s:6:\"height\";i:558;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h6-bg-section-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x218.png\";s:5:\"width\";i:600;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-600x218.png\";s:5:\"width\";i:600;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h6-bg-section-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3855,2845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:734;s:6:\"height\";i:444;s:4:\"file\";s:18:\"2019/12/h4-map.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"h4-map-300x181.png\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"h4-map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"h4-map-734x313.png\";s:5:\"width\";i:734;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"h4-map-600x444.png\";s:5:\"width\";i:600;s:6:\"height\";i:444;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"h4-map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"h4-map-600x363.png\";s:5:\"width\";i:600;s:6:\"height\";i:363;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"h4-map-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"h4-map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"h4-map-600x363.png\";s:5:\"width\";i:600;s:6:\"height\";i:363;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"h4-map-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3856,2725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:535;s:6:\"height\";i:519;s:4:\"file\";s:21:\"2019/12/h4-about1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-300x291.png\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"h4-about1-535x313.png\";s:5:\"width\";i:535;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"h4-about1-535x450.png\";s:5:\"width\";i:535;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h4-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"h4-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h4-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3857,2671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:524;s:6:\"height\";i:316;s:4:\"file\";s:18:\"2019/12/h3-map.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"h3-map-300x181.png\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"h3-map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"h3-map-524x313.png\";s:5:\"width\";i:524;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"h3-map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"h3-map-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"h3-map-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"h3-map-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3858,2610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-04.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-04-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-04-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3859,2609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-03.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-03-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-03-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3860,2608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-01-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-01-250x260.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3861,2606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2019/12/h3-team-02.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-02-250x260.png\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h3-team-02-250x260.png\";s:5:\"width\";i:250;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3862,2602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:779;s:6:\"height\";i:735;s:4:\"file\";s:27:\"2019/12/bg-section-07-1.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-300x283.png\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-768x725.png\";s:5:\"width\";i:768;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-779x313.png\";s:5:\"width\";i:779;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"bg-section-07-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-600x566.png\";s:5:\"width\";i:600;s:6:\"height\";i:566;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-600x566.png\";s:5:\"width\";i:600;s:6:\"height\";i:566;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-section-07-1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3863,2528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:739;s:6:\"height\";i:858;s:4:\"file\";s:25:\"2019/12/bg-section-07.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-07-258x300.png\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-07-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-07-739x313.png\";s:5:\"width\";i:739;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-07-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-07-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-07-600x697.png\";s:5:\"width\";i:600;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-07-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-07-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-07-600x697.png\";s:5:\"width\";i:600;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-07-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3864,2391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:795;s:4:\"file\";s:25:\"2019/12/bg-section-05.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-05-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-05-1024x424.png\";s:5:\"width\";i:1024;s:6:\"height\";i:424;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-05-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-05-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-05-1536x636.png\";s:5:\"width\";i:1536;s:6:\"height\";i:636;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-05-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-05-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-05-600x248.png\";s:5:\"width\";i:600;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-05-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-05-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-05-600x248.png\";s:5:\"width\";i:600;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-05-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3865,2319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:85;s:4:\"file\";s:24:\"2019/12/signature-02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3866,2306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:730;s:4:\"file\";s:21:\"2019/12/banner-01.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-01-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"banner-01-510x313.png\";s:5:\"width\";i:510;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"banner-01-510x450.png\";s:5:\"width\";i:510;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"banner-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"banner-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3867,2180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:294;s:6:\"height\";i:255;s:4:\"file\";s:17:\"2019/12/award.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"award-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"award-250x255.png\";s:5:\"width\";i:250;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"award-250x255.png\";s:5:\"width\";i:250;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3868,2179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:186;s:6:\"height\";i:123;s:4:\"file\";s:22:\"2019/12/award-year.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"award-year-150x123.png\";s:5:\"width\";i:150;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3869,2171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/12/home-author-02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3870,2170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2019/12/home-author-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"home-author-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3871,2125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:536;s:4:\"file\";s:25:\"2019/12/bg-section-04.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-section-04-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1024x286.png\";s:5:\"width\";i:1024;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-768x214.png\";s:5:\"width\";i:768;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-04-1536x429.png\";s:5:\"width\";i:1536;s:6:\"height\";i:429;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-04-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-04-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x168.png\";s:5:\"width\";i:600;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-04-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-04-600x168.png\";s:5:\"width\";i:600;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-04-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3872,2117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-04.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-04-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-04-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-team-04-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-team-04-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3873,2116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-03.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-03-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-03-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-team-03-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-team-03-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3874,2115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-02.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-02-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-02-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-team-02-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-team-02-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3875,2114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:352;s:4:\"file\";s:24:\"2019/12/home-team-01.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-team-01-228x300.jpg\";s:5:\"width\";i:228;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"home-team-01-267x313.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"home-team-01-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"home-team-01-267x300.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"home-team-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3876,2091,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:967;s:6:\"height\";i:749;s:4:\"file\";s:25:\"2019/12/bg-section-03.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-03-300x232.png\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-03-768x595.png\";s:5:\"width\";i:768;s:6:\"height\";i:595;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-03-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x465.png\";s:5:\"width\";i:600;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-03-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-03-600x465.png\";s:5:\"width\";i:600;s:6:\"height\";i:465;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-03-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3877,2074,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:196;s:4:\"file\";s:26:\"2019/12/testimonial-10.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"testimonial-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3878,2070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:775;s:4:\"file\";s:25:\"2019/12/bg-section-02.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-02-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-section-02-1024x413.png\";s:5:\"width\";i:1024;s:6:\"height\";i:413;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-section-02-768x310.png\";s:5:\"width\";i:768;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-section-02-1536x620.png\";s:5:\"width\";i:1536;s:6:\"height\";i:620;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-02-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x242.png\";s:5:\"width\";i:600;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-02-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-02-600x242.png\";s:5:\"width\";i:600;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-02-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3879,2056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:704;s:6:\"height\";i:715;s:4:\"file\";s:25:\"2019/12/bg-section-01.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-section-01-295x300.png\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-section-01-704x313.png\";s:5:\"width\";i:704;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-section-01-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-section-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-section-01-600x609.png\";s:5:\"width\";i:600;s:6:\"height\";i:609;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-section-01-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-section-01-600x609.png\";s:5:\"width\";i:600;s:6:\"height\";i:609;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-section-01-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3880,1991,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:41;s:6:\"height\";i:35;s:4:\"file\";s:28:\"2019/12/icon-themeforest.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3881,1990,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:44;s:6:\"height\";i:44;s:4:\"file\";s:23:\"2019/12/icon-envato.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3882,1989,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:47;s:4:\"file\";s:27:\"2019/12/icon-codecanyon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3883,1988,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:41;s:6:\"height\";i:41;s:4:\"file\";s:23:\"2019/12/icon-career.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3884,1985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:39;s:6:\"height\";i:40;s:4:\"file\";s:23:\"2019/12/icon-google.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3885,1939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:31:\"2019/12/WhiteTailoredBlazer.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"WhiteTailoredBlazer-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3886,1938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2019/12/SlimFitBrightBlue.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"SlimFitBrightBlue-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"SlimFitBrightBlue-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3887,1937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2019/12/PureSilkGreyTie.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"PureSilkGreyTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkGreyTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3888,1936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2019/12/PureSilkBlueTie.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"PureSilkBlueTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"PureSilkBlueTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3889,1935,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2019/12/PureSilkBlackTie.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"PureSilkBlackTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"PureSilkBlackTie-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3890,1934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2019/12/MonochromeCamiMidi.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"MonochromeCamiMidi-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"MonochromeCamiMidi-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3891,1933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2019/12/LightBlueShirt.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"LightBlueShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"LightBlueShirt-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3892,1932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/12/GreyShirt.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"GreyShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"GreyShirt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"GreyShirt-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"GreyShirt-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"GreyShirt-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"GreyShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"GreyShirt-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"GreyShirt-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"GreyShirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"GreyShirt-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"GreyShirt-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3893,1931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/12/FlatShoes.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"FlatShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"FlatShoes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"FlatShoes-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"FlatShoes-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"FlatShoes-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"FlatShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"FlatShoes-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"FlatShoes-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"FlatShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"FlatShoes-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"FlatShoes-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3894,1930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2019/12/ChelseaBoots.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"ChelseaBoots-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"ChelseaBoots-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3895,1929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2019/12/CamiSkaterFront.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"CamiSkaterFront-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"CamiSkaterFront-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3896,1928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2019/12/BlackSuit.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BlackSuit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BlackSuit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"BlackSuit-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"BlackSuit-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:21:\"BlackSuit-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"BlackSuit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"BlackSuit-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"BlackSuit-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"BlackSuit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"BlackSuit-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"BlackSuit-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3897,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2019/12/BlackShoes.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"BlackShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackShoes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"BlackShoes-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"BlackShoes-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"BlackShoes-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"BlackShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"BlackShoes-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackShoes-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"BlackShoes-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"BlackShoes-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackShoes-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3898,1926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2019/12/BlackDress.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"BlackDress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackDress-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"BlackDress-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"BlackDress-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"BlackDress-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"BlackDress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"BlackDress-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackDress-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"BlackDress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"BlackDress-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlackDress-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3899,1925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2019/12/BlackBlazer.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"BlackBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"BlackBlazer-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3900,1896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:1;s:4:\"file\";s:21:\"2019/12/about-gap.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"about-gap-300x1.png\";s:5:\"width\";i:300;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"about-gap-150x1.png\";s:5:\"width\";i:150;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"about-gap-300x1.png\";s:5:\"width\";i:300;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"about-gap-250x1.png\";s:5:\"width\";i:250;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"about-gap-300x1.png\";s:5:\"width\";i:300;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"about-gap-250x1.png\";s:5:\"width\";i:250;s:6:\"height\";i:1;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3901,1892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:85;s:4:\"file\";s:21:\"2019/12/signature.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3902,1877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:558;s:6:\"height\";i:631;s:4:\"file\";s:18:\"2019/12/about1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"about1-265x300.png\";s:5:\"width\";i:265;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:18:\"about1-558x313.png\";s:5:\"width\";i:558;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:18:\"about1-558x450.png\";s:5:\"width\";i:558;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3903,1860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:20:\"2019/12/theme-15.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-15-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-15-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-15-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-15-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-15-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-15-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-15-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3904,1706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:390;s:4:\"file\";s:23:\"2019/12/team-single.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"team-single-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"team-single-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:23:\"team-single-370x313.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"team-single-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"team-single-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"team-single-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"team-single-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3905,1693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-04.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3906,1692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-03.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3907,1691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-02.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3908,1690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2019/12/team-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3909,1678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:36;s:4:\"file\";s:21:\"2019/12/client-05.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-05-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3910,1658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-09.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3911,1657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-08.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3912,1656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:26:\"2019/12/testimonial-07.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3913,1568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:601;s:6:\"height\";i:706;s:4:\"file\";s:26:\"2019/12/contact-about1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"contact-about1-255x300.png\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"contact-about1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:26:\"contact-about1-601x313.png\";s:5:\"width\";i:601;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:26:\"contact-about1-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"contact-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"contact-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"contact-about1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"contact-about1-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3914,1557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-06.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-06-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3915,1556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-05.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-05-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3916,1555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-04.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-04-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3917,1554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-03.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-03-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3918,1553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-02.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-02-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3919,1552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2019/12/gallery-01.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:22:\"gallery-01-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:22:\"gallery-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"gallery-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"gallery-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3920,1543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-14.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-14-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-14-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-14-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-14-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-14-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-14-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-14-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-14-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-14-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-14-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-14-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3921,1542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-13.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-13-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-13-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-13-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-13-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-13-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-13-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-13-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-13-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-13-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-13-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3922,1541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-12.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-12-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-12-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-12-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-12-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-12-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-12-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-12-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-12-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-12-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-12-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3923,1540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-11.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-11-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-11-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-11-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-11-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-11-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-11-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-11-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-11-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-11-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-11-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3924,1539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-10.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-10-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-10-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-10-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-10-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-10-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-10-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-10-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-10-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-10-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-10-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3925,1538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-09.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-09-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-09-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-09-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-09-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-09-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-09-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-09-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-09-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-09-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-09-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-09-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3926,1537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-08.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-08-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-08-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-08-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-08-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-08-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-08-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-08-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-08-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-08-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-08-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-08-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3927,1536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-07.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-07-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-07-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-07-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-07-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-07-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-07-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-07-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-07-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-07-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3928,1535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-06.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-06-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-06-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-06-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-06-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-06-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-06-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-06-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-06-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-06-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3929,1534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-05.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-05-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-05-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-05-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-05-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-05-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-05-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-05-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-05-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3930,1533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-04.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-04-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-04-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-04-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-04-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-04-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-04-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-04-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-04-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3931,1532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-03.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-03-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-03-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-03-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-03-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-03-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-03-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-03-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-03-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3932,1531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-02.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-02-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-02-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-02-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-02-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-02-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-02-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-02-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-02-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-02-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3933,1530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2019/11/theme-01.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"theme-01-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"theme-01-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"theme-01-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"theme-01-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:20:\"theme-01-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:20:\"theme-01-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"theme-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"theme-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"theme-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"theme-01-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"theme-01-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3934,1524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:45;s:4:\"file\";s:23:\"2019/10/google-play.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3935,1522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:157;s:6:\"height\";i:46;s:4:\"file\";s:21:\"2019/10/app-store.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"app-store-150x46.png\";s:5:\"width\";i:150;s:6:\"height\";i:46;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3936,1516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:337;s:4:\"file\";s:22:\"2019/10/bg-footer1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"bg-footer1-85x300.png\";s:5:\"width\";i:85;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x150.png\";s:5:\"width\";i:95;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x313.png\";s:5:\"width\";i:95;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"bg-footer1-95x300.png\";s:5:\"width\";i:95;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x285.png\";s:5:\"width\";i:95;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x300.png\";s:5:\"width\";i:95;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"bg-footer1-95x285.png\";s:5:\"width\";i:95;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3937,1512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:570;s:4:\"file\";s:25:\"2019/11/bg-page-title.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-page-title-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-page-title-1024x304.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-page-title-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-page-title-768x228.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-page-title-1536x456.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:25:\"bg-page-title-900x313.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:25:\"bg-page-title-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"bg-page-title-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"bg-page-title-600x178.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-page-title-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"bg-page-title-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"bg-page-title-600x178.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-page-title-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3938,1000,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:170;s:6:\"height\";i:35;s:4:\"file\";s:21:\"2019/11/client-04.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-04-150x35.png\";s:5:\"width\";i:150;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3939,999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:166;s:6:\"height\";i:38;s:4:\"file\";s:21:\"2019/11/client-03.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-03-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3940,998,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:42;s:4:\"file\";s:21:\"2019/11/client-02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3941,997,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:169;s:6:\"height\";i:35;s:4:\"file\";s:21:\"2019/11/client-01.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"client-01-150x35.png\";s:5:\"width\";i:150;s:6:\"height\";i:35;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3942,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-06.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3943,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-05.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3944,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-04.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3945,399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-03.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3946,398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-02.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3947,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:26:\"2019/11/testimonial-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3948,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:92;s:6:\"height\";i:92;s:4:\"file\";s:21:\"2019/11/author-02.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3949,237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:92;s:6:\"height\";i:92;s:4:\"file\";s:21:\"2019/11/author-01.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3966,5728,'_wp_attached_file','2021/04/700241Frontcover.jpeg'),(3955,4587,'_elementor_css','a:6:{s:4:\"time\";i:1617481426;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3956,5137,'_elementor_css','a:6:{s:4:\"time\";i:1617481426;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:1;s:10:\"flaticonv3\";i:8;s:8:\"material\";i:26;s:10:\"flaticonv2\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3958,9,'_edit_lock','1620520396:1'),(3990,5735,'_elementor_edit_mode','builder'),(3991,5735,'_elementor_template_type','wp-page'),(3992,5735,'_elementor_version','3.1.4'),(3993,5735,'_wp_page_template','default'),(3994,5735,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3988,5734,'_wp_attached_file','2021/04/itunes-1-.jpeg'),(3989,5734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:368;s:6:\"height\";i:137;s:4:\"file\";s:22:\"2021/04/itunes-1-.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"itunes-1--300x112.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"itunes-1--150x137.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"itunes-1--300x137.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"itunes-1--250x137.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"itunes-1--300x137.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"itunes-1--250x137.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3968,5729,'_wp_attached_file','2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png'),(3969,5729,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:880;s:6:\"height\";i:412;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-880x313.png\";s:5:\"width\";i:880;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-600x412.png\";s:5:\"width\";i:600;s:6:\"height\";i:412;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.35.09-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3970,5730,'_wp_attached_file','2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png'),(3971,5730,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1160;s:6:\"height\";i:392;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\";s:5:\"width\";i:1024;s:6:\"height\";i:346;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png\";s:5:\"width\";i:768;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-600x392.png\";s:5:\"width\";i:600;s:6:\"height\";i:392;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png\";s:5:\"width\";i:600;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png\";s:5:\"width\";i:600;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.39.41-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3977,5732,'_elementor_edit_mode','builder'),(3978,5732,'_elementor_template_type','wp-page'),(3979,5732,'_elementor_version','3.0.11'),(3980,5732,'_wp_page_template','default'),(3981,5732,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5a62248\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"40\"},\"elements\":[{\"id\":\"398f16d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4d8a08d\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Get Settled\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-02.jpg\",\"id\":1553},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-handshake\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"6dc2d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"cd42469\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Learn English\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-03.jpg\",\"id\":1554},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-work\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"50\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"8b18e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7a3a155\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Find Work\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-fancybox-01.jpg\",\"id\":5377},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-achievement\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"100\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true},{\"id\":\"4d5d1a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"a149842\",\"elType\":\"widget\",\"settings\":{\"layout\":\"16\",\"title_text\":\"Creativity\",\"description_text\":\"Consultio is a provider of low cost planningin USA.\",\"list\":[],\"btn_text\":\"Get started\",\"box_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/12\\/gallery-05.jpg\",\"id\":1556},\"selected_icon\":{\"value\":\"flaticonv5 flaticonv5-idea\",\"library\":\"flaticonv5\"},\"ct_animate\":\"wow fadeInUp\",\"ct_animate_delay\":\"150\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"42\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/banner-01.jpg\",\"id\":5389},\"title\":\"Golden years we\\u2019ve passed!\",\"layout\":\"3\",\"number\":\"15\",\"counter_icon\":{\"value\":\"flaticonv3 flaticonv3-group\",\"library\":\"flaticonv3\"},\"counter_number\":\"5000\",\"counter_title\":\"Satisfied Clients\",\"counter_suffix\":\"+\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(3995,5736,'_elementor_edit_mode','builder'),(3996,5736,'_elementor_template_type','wp-page'),(3997,5736,'_elementor_version','3.1.4'),(3998,5736,'_wp_page_template','default'),(3999,5736,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4001,5737,'_elementor_template_type','wp-page'),(4002,5737,'_elementor_version','3.1.4'),(4003,5737,'_wp_page_template','default'),(4004,5737,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4008,5739,'_elementor_edit_mode','builder'),(4009,5739,'_elementor_template_type','wp-page'),(4010,5739,'_elementor_version','3.1.4'),(4011,5739,'_wp_page_template','default'),(4012,5739,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4006,5738,'_wp_attached_file','2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png'),(4007,5738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1154;s:6:\"height\";i:456;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\";s:5:\"width\";i:1024;s:6:\"height\";i:405;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png\";s:5:\"width\";i:768;s:6:\"height\";i:303;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png\";s:5:\"width\";i:600;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png\";s:5:\"width\";i:600;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.43.11-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4013,5740,'_elementor_edit_mode','builder'),(4014,5740,'_elementor_template_type','wp-page'),(4015,5740,'_elementor_version','3.1.4'),(4016,5740,'_wp_page_template','default'),(4017,5740,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.39.41-PM.png\",\"id\":5730},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4018,5741,'_elementor_edit_mode','builder'),(4019,5741,'_elementor_template_type','wp-page'),(4020,5741,'_elementor_version','3.1.4'),(4021,5741,'_wp_page_template','default'),(4022,5741,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4026,5743,'_elementor_edit_mode','builder'),(4027,5743,'_elementor_template_type','wp-page'),(4028,5743,'_elementor_version','3.1.4'),(4029,5743,'_wp_page_template','default'),(4030,5743,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4024,5742,'_wp_attached_file','2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png'),(4025,5742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:240;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.44.35-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.44.35-PM-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.44.35-PM-250x240.png\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.44.35-PM-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.44.35-PM-250x240.png\";s:5:\"width\";i:250;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4031,5744,'_elementor_edit_mode','builder'),(4032,5744,'_elementor_template_type','wp-page'),(4033,5744,'_elementor_version','3.1.4'),(4034,5744,'_wp_page_template','default'),(4035,5744,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4036,5745,'_elementor_edit_mode','builder'),(4037,5745,'_elementor_template_type','wp-page'),(4038,5745,'_elementor_version','3.1.4'),(4039,5745,'_wp_page_template','default'),(4040,5745,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4044,5747,'_elementor_edit_mode','builder'),(4045,5747,'_elementor_template_type','wp-page'),(4046,5747,'_elementor_version','3.1.4'),(4047,5747,'_wp_page_template','default'),(4048,5747,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4042,5746,'_wp_attached_file','2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png'),(4043,5746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:896;s:6:\"height\";i:298;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-600x298.png\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-300x298.png\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-300x298.png\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.45.59-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4049,5748,'_elementor_edit_mode','builder'),(4050,5748,'_elementor_template_type','wp-page'),(4051,5748,'_elementor_version','3.1.4'),(4052,5748,'_wp_page_template','default'),(4053,5748,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/itunes-1-.jpeg\",\"id\":5734},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4054,5749,'_elementor_edit_mode','builder'),(4055,5749,'_elementor_template_type','wp-page'),(4056,5749,'_elementor_version','3.1.4'),(4057,5749,'_wp_page_template','default');
INSERT INTO `wpiy_postmeta` VALUES (4058,5749,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4062,5751,'_elementor_edit_mode','builder'),(4063,5751,'_elementor_template_type','wp-page'),(4064,5751,'_elementor_version','3.1.4'),(4065,5751,'_wp_page_template','default'),(4066,5751,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4060,5750,'_wp_attached_file','2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png'),(4061,5750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1112;s:6:\"height\";i:372;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\";s:5:\"width\";i:1024;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png\";s:5:\"width\";i:768;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png\";s:5:\"width\";i:600;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png\";s:5:\"width\";i:600;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-1.47.26-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4067,5752,'_elementor_edit_mode','builder'),(4068,5752,'_elementor_template_type','wp-page'),(4069,5752,'_elementor_version','3.1.4'),(4070,5752,'_wp_page_template','default'),(4071,5752,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.35.09-PM.png\",\"id\":5729},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4072,5753,'_elementor_edit_mode','builder'),(4073,5753,'_elementor_template_type','wp-page'),(4074,5753,'_elementor_version','3.1.4'),(4075,5753,'_wp_page_template','default'),(4076,5753,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4078,5754,'_elementor_edit_mode','builder'),(4079,5754,'_elementor_template_type','wp-page'),(4080,5754,'_elementor_version','3.1.4'),(4081,5754,'_wp_page_template','default'),(4082,5754,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4083,5755,'_elementor_edit_mode','builder'),(4084,5755,'_elementor_template_type','wp-page'),(4085,5755,'_elementor_version','3.1.4'),(4086,5755,'_wp_page_template','default'),(4087,5755,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4104,5759,'_elementor_edit_mode','builder'),(4088,5756,'_elementor_edit_mode','builder'),(4089,5756,'_elementor_template_type','wp-page'),(4090,5756,'_elementor_version','3.1.4'),(4091,5756,'_wp_page_template','default'),(4092,5756,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4094,5757,'_elementor_edit_mode','builder'),(4095,5757,'_elementor_template_type','wp-page'),(4096,5757,'_elementor_version','3.1.4'),(4097,5757,'_wp_page_template','default'),(4098,5757,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4099,5758,'_elementor_edit_mode','builder'),(4100,5758,'_elementor_template_type','wp-page'),(4101,5758,'_elementor_version','3.1.4'),(4102,5758,'_wp_page_template','default'),(4103,5758,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"52c8ddf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"title\":\"100% Never Before Seen Action!\"},\"elements\":[],\"widgetType\":\"ct_banner\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4105,5759,'_elementor_template_type','wp-page'),(4106,5759,'_elementor_version','3.1.4'),(4107,5759,'_wp_page_template','default'),(4108,5759,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4118,5761,'_elementor_edit_mode','builder'),(4119,5761,'_elementor_template_type','wp-page'),(4120,5761,'_elementor_version','3.1.4'),(4121,5761,'_wp_page_template','default'),(4122,5761,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4146,5767,'_elementor_edit_mode','builder'),(4128,5763,'_elementor_edit_mode','builder'),(4129,5763,'_elementor_template_type','wp-page'),(4130,5763,'_elementor_version','3.1.4'),(4131,5763,'_wp_page_template','default'),(4132,5763,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4147,5767,'_elementor_template_type','wp-page'),(4148,5767,'_elementor_version','3.1.4'),(4149,5767,'_wp_page_template','default'),(4150,5767,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4123,5762,'_elementor_edit_mode','builder'),(4124,5762,'_elementor_template_type','wp-page'),(4125,5762,'_elementor_version','3.1.4'),(4126,5762,'_wp_page_template','default'),(4127,5762,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Single-minded focus & hard work lead to desired job in just one year\",\"title_color\":\"#0D2252\",\"sub_title\":\"We are consultio\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"We are now at <b>Consultio Company Limited<\\/b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\\nresponsibility at the same time.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"d60c980\",\"elType\":\"widget\",\"settings\":{\"style\":\"style5\",\"list\":[{\"_id\":\"534e901\",\"content\":\"<b>Save money<\\/b> \\u2013 we help protect you from non-compliance issues.\"},{\"_id\":\"7ced512\",\"content\":\"<b>Grow<\\/b> \\u2013 you keep your focus on increasing revenue.\"}],\"title_color\":\"#313E5D\",\"description_color\":\"#313E5D\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4136,5765,'_elementor_edit_mode','builder'),(4137,5765,'_elementor_template_type','wp-page'),(4138,5765,'_elementor_version','3.1.4'),(4139,5765,'_wp_page_template','default'),(4140,5765,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4134,5764,'_wp_attached_file','2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png'),(4135,5764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:974;s:6:\"height\";i:790;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png\";s:5:\"width\";i:768;s:6:\"height\";i:623;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png\";s:5:\"width\";i:600;s:6:\"height\";i:487;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png\";s:5:\"width\";i:600;s:6:\"height\";i:487;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.17.55-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4141,5766,'_elementor_edit_mode','builder'),(4142,5766,'_elementor_template_type','wp-page'),(4143,5766,'_elementor_version','3.1.4'),(4144,5766,'_wp_page_template','default'),(4145,5766,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-01_02.jpg\",\"id\":5398},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7a46140\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-02.jpg\",\"id\":5413},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"0\",\"bottom\":\"185\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2db4561\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"50429ab\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"14\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d7c76eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true},{\"id\":\"9e7f6cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"2ccde9c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The fields on which we give servies\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Services\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"15b697f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":20},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"465b354\",\"elType\":\"widget\",\"settings\":{\"layout\":\"10\",\"source\":[\"corporate|service-category\",\"finance|service-category\"],\"limit\":6,\"filter_default_title\":\"All\",\"col_md\":\"2\",\"col_lg\":\"3\",\"col_xl\":\"3\",\"item_color\":[],\"pagination_type\":\"loadmore\",\"style_l10\":\"style2\",\"ct_animate\":\"wow fadeInUp\"},\"elements\":[],\"widgetType\":\"ct_service_grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3fe4700\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":1},\"elements\":[{\"id\":\"df376f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d91d61e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get 20% discount to get By Immigration visa with moneyback guarantee.\",\"btn_text\":\"Apply now!\",\"layout\":\"2\",\"sub_title\":\"Get  Online Visa  Today!\",\"btn_link\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact-v-2\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/women-01.png\",\"id\":5440},\"btn_style\":\"btn-outline-white\"},\"elements\":[],\"widgetType\":\"ct_cta\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"211271c\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"47\",\"right\":\"0\",\"bottom\":\"85\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3efe5db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4ef32ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7506b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"a68679e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"e8f2a43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Immigration & Visa are allowed some Countries\",\"title_color\":\"#0D2252\",\"sub_title\":\"Countries\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"49eb132\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"75d40d5\",\"elType\":\"widget\",\"settings\":{\"item_list\":[{\"_id\":\"02e6034\",\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-05.png\",\"id\":5458},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"left_positioon\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-02.png\",\"id\":5455},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Great Bend, KS 67530, USA\",\"top_positioon\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"_id\":\"4d1112f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-03.png\",\"id\":5456},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\",\"top_positioon\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"_id\":\"0be9d9f\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-04.png\",\"id\":5457},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\",\"top_positioon\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"_id\":\"3c16424\"},{\"icon\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/flag-01.png\",\"id\":5454},\"phone\":\"<b>Phone:<\\/b> (+734) 697-2907\",\"email\":\"<b>Email:<\\/b> info@consultio.com\",\"address\":\"<b>Address:<\\/b> North Pennines AONB, United Kingdom\",\"top_positioon\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"left_positioon\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"_id\":\"29b2908\"}],\"bg_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/section-map.png\",\"id\":5460}},\"elements\":[],\"widgetType\":\"ct_point\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0b351f\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"86\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8db745f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dd6a9ef\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c43dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true},{\"id\":\"edfaafc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125,\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"We take some courses to make immigration easier\",\"title_color\":\"#0D2252\",\"sub_title\":\"Courses\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"If you\\u2019re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true},{\"id\":\"9b522c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24,\"_inline_size_tablet\":15},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"b998689\",\"elType\":\"widget\",\"settings\":{\"col_md\":\"2\",\"dots\":\"true\"},\"elements\":[],\"widgetType\":\"ct_courses_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"12\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96c1aea\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"52\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f858aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73339dc\",\"elType\":\"widget\",\"settings\":{\"clients\":[{\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997},\"_id\":\"70a95e3\"},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"f1f35a1\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"6b2b653\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"6384fe7\"},{\"_id\":\"3914044\",\"client_name\":\"Client 1\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-01.png\",\"id\":997}},{\"client_name\":\"Client 2\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-02.png\",\"id\":998},\"_id\":\"6732d01\"},{\"client_name\":\"Client 3\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-03.png\",\"id\":999},\"_id\":\"0455cf6\"},{\"client_name\":\"Client 4\",\"client_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/client-04.png\",\"id\":1000},\"_id\":\"8a96513\"}],\"style\":\"style5\",\"col_sm\":\"3\",\"col_lg\":\"4\",\"col_xl\":\"4\",\"autoplay\":\"true\",\"col_xs\":\"2\"},\"elements\":[],\"widgetType\":\"ct_clients_list\"},{\"id\":\"fb00721\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c7a1a7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true},{\"id\":\"cf7a367\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":51.33200000000000073896444519050419330596923828125},\"elements\":[{\"id\":\"ef02a0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Know something more from our latest blog!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Blog\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"c860a37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"96c0673\",\"elType\":\"widget\",\"settings\":{\"layout\":\"7\",\"limit\":6,\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"slides_to_scroll\":\"2\",\"dots\":\"true\",\"infinite\":\"\",\"style_l7\":\"style4\"},\"elements\":[],\"widgetType\":\"ct_blog_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4152,5768,'_elementor_edit_mode','builder'),(4153,5768,'_elementor_template_type','wp-page'),(4154,5768,'_elementor_version','3.1.4'),(4155,5768,'_wp_page_template','default'),(4156,5768,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4157,5769,'_elementor_edit_mode','builder'),(4158,5769,'_elementor_template_type','wp-page'),(4159,5769,'_elementor_version','3.1.4'),(4160,5769,'_wp_page_template','default'),(4161,5769,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\"},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4219,5781,'_elementor_template_type','wp-page'),(4220,5781,'_elementor_version','3.1.4'),(4221,5781,'_wp_page_template','default'),(4222,5781,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4186,5775,'_elementor_edit_mode','builder'),(4187,5775,'_elementor_template_type','wp-page'),(4188,5775,'_elementor_version','3.1.4'),(4189,5775,'_wp_page_template','default'),(4190,5775,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4162,5770,'_elementor_edit_mode','builder'),(4163,5770,'_elementor_template_type','wp-page'),(4164,5770,'_elementor_version','3.1.4'),(4165,5770,'_wp_page_template','default'),(4166,5770,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4176,5773,'_elementor_edit_mode','builder'),(4177,5773,'_elementor_template_type','wp-page'),(4178,5773,'_elementor_version','3.1.4'),(4179,5773,'_wp_page_template','default'),(4180,5773,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4168,5771,'_wp_attached_file','2021/04/golden-thumbsup.jpg'),(4169,5771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:820;s:6:\"height\";i:860;s:4:\"file\";s:27:\"2021/04/golden-thumbsup.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-286x300.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-768x805.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:805;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-820x313.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"golden-thumbsup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-600x629.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-600x629.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"golden-thumbsup-250x285.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4192,5776,'_elementor_edit_mode','builder'),(4193,5776,'_elementor_template_type','wp-page'),(4194,5776,'_elementor_version','3.1.4'),(4195,5776,'_wp_page_template','default'),(4196,5776,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4181,5774,'_elementor_edit_mode','builder'),(4182,5774,'_elementor_template_type','wp-page'),(4183,5774,'_elementor_version','3.1.4'),(4184,5774,'_wp_page_template','default'),(4185,5774,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"We recieve the best client\\u2019s review.\",\"title_color\":\"#0D2252\",\"sub_title\":\"Testimonials\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-02.jpg\",\"id\":5515},\"title\":\"Farhan Rio\",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/ud-testimonial-03.jpg\",\"id\":5516},\"title\":\"Van Hunter \",\"position\":\"Senior Director\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"35e31c1\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-06.jpg\",\"id\":402},\"title\":\"Fred L Smith\",\"position\":\"Leadership Group\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"e2a6ee0\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/author-02.jpg\",\"id\":238},\"title\":\"Carolyn Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"8cd7dc2\"},{\"image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2019\\/11\\/testimonial-05.jpg\",\"id\":401},\"title\":\"Kathleen Smith \",\"position\":\"Agent Manager\",\"description\":\"Lorem ipsum dolor sit amet, consecte\\nsed do eiusmod tempor incididunt utlao\\nbore et dolore magna aliqua.\",\"_id\":\"1d92aed\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4197,5777,'_elementor_edit_mode','builder'),(4198,5777,'_elementor_template_type','wp-page'),(4199,5777,'_elementor_version','3.1.4'),(4200,5777,'_wp_page_template','default'),(4201,5777,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4218,5781,'_elementor_edit_mode','builder'),(4202,5778,'_elementor_edit_mode','builder'),(4203,5778,'_elementor_template_type','wp-page'),(4204,5778,'_elementor_version','3.1.4'),(4205,5778,'_wp_page_template','default'),(4206,5778,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4208,5779,'_elementor_edit_mode','builder'),(4209,5779,'_elementor_template_type','wp-page'),(4210,5779,'_elementor_version','3.1.4'),(4211,5779,'_wp_page_template','default'),(4212,5779,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4213,5780,'_elementor_edit_mode','builder'),(4214,5780,'_elementor_template_type','wp-page'),(4215,5780,'_elementor_version','3.1.4'),(4216,5780,'_wp_page_template','default'),(4217,5780,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dd066d\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-04.jpg\",\"id\":5489},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"61\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7be4a84\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"103b1f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"a03db3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"f457698\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t hasitate to contact with us for inquries!\",\"title_color\":\"#0D2252\",\"sub_title\":\"Get in touch\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"33\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"24a6a24\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"e8cbf20\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"177f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a51a441\",\"elType\":\"widget\",\"settings\":{\"ctf7_id\":\"5005\",\"style_l1\":\"style12\"},\"elements\":[],\"widgetType\":\"ct_ctf7\"}],\"isInner\":true},{\"id\":\"fb83a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d3fa\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-6\",\"right\":\"0\",\"bottom\":\"46\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#FB0020\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"\"}},\"elements\":[],\"widgetType\":\"ct_text_editor\"},{\"id\":\"f61028c\",\"elType\":\"widget\",\"settings\":{\"layout\":\"3\",\"content_list\":[{\"_id\":\"c8153fd\",\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-headphones\",\"library\":\"flaticonv5\"},\"title\":\"24\\/7 hours customer support\"},{\"ct_icon\":{\"value\":\"flaticonv5 flaticonv5-money-back-guarantee\",\"library\":\"flaticonv5\"},\"title\":\"100% money back Guarentee\",\"_id\":\"5bb82c0\"}],\"col_sm\":\"1\",\"col_md\":\"2\",\"col_lg\":\"2\",\"col_xl\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"22\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_fancy_box_grid\"},{\"id\":\"3a7c032\",\"elType\":\"widget\",\"settings\":{\"label_phone\":\"Call us for information\",\"phone_number\":\"+23 656 523 5052\",\"label_email\":\"Mail us\",\"email_address\":\"info@consultio.com\"},\"elements\":[],\"widgetType\":\"ct_phone_info\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4302,5789,'_elementor_edit_mode','builder'),(4303,5789,'_elementor_template_type','wp-page'),(4304,5789,'_elementor_version','3.1.4'),(4305,5789,'_wp_page_template','default'),(4306,5789,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4225,5782,'_elementor_edit_mode','builder'),(4226,5782,'_elementor_template_type','wp-page'),(4227,5782,'_elementor_version','3.1.4'),(4228,5782,'_wp_page_template','default'),(4229,5782,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4230,5782,'_elementor_controls_usage','a:7:{s:17:\"slider_revolution\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"content_section\";a:2:{s:14:\"revslidertitle\";i:1;s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:19;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:19;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:7;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:6:\"layout\";i:2;s:3:\"gap\";i:5;s:15:\"stretch_section\";i:7;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:4;s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:5;s:16:\"background_image\";i:1;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}}}}s:10:\"ct_heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:6;s:11:\"title_color\";i:6;s:10:\"text_align\";i:5;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;}s:17:\"sub_title_section\";a:5:{s:9:\"sub_title\";i:6;s:15:\"sub_title_style\";i:6;s:31:\"sub_title_typography_typography\";i:6;s:30:\"sub_title_typography_font_size\";i:6;s:15:\"sub_title_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:4;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:8;s:7:\"link_to\";i:4;s:4:\"link\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:4;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:6:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_line_height\";i:4;s:10:\"text_color\";i:4;s:5:\"align\";i:3;s:26:\"link_typography_typography\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:3;}}}}s:23:\"ct_testimonial_carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:4:{s:6:\"layout\";a:1:{s:14:\"layout_section\";a:1:{s:6:\"layout\";i:1;}}s:7:\"content\";a:1:{s:12:\"content_list\";a:1:{s:11:\"testimonial\";i:1;}}s:8:\"settings\";a:2:{s:25:\"section_carousel_settings\";a:4:{s:6:\"col_md\";i:1;s:4:\"dots\";i:1;s:6:\"col_lg\";i:1;s:6:\"col_xl\";i:1;}s:13:\"style_section\";a:2:{s:9:\"style_l12\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}}'),(4231,5782,'_elementor_css','a:6:{s:4:\"time\";i:1617485377;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4232,9,'_edit_last','1'),(4233,9,'p_h_style1','themeoption'),(4234,9,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4236,5783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:664;s:6:\"height\";i:336;s:4:\"file\";s:48:\"2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-300x152.png\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-664x313.png\";s:5:\"width\";i:664;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-600x336.png\";s:5:\"width\";i:600;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-600x304.png\";s:5:\"width\";i:600;s:6:\"height\";i:304;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-600x304.png\";s:5:\"width\";i:600;s:6:\"height\";i:304;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-04-03-at-2.38.27-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4237,5784,'_menu_item_type','custom'),(4238,5784,'_menu_item_menu_item_parent','0'),(4239,5784,'_menu_item_object_id','5784'),(4240,5784,'_menu_item_object','custom'),(4241,5784,'_menu_item_target',''),(4242,5784,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4243,5784,'_menu_item_xfn',''),(4244,5784,'_menu_item_url','#'),(4282,5784,'_menu_item_ct_megaprofile','0'),(4246,5785,'_menu_item_type','custom'),(4247,5785,'_menu_item_menu_item_parent','0'),(4248,5785,'_menu_item_object_id','5785'),(4249,5785,'_menu_item_object','custom'),(4250,5785,'_menu_item_target',''),(4251,5785,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4252,5785,'_menu_item_xfn',''),(4253,5785,'_menu_item_url','https://dm117.dev34.info/buy-the-book/'),(4286,5785,'_menu_item_ct_megaprofile','0'),(4255,5786,'_menu_item_type','custom'),(4256,5786,'_menu_item_menu_item_parent','0'),(4257,5786,'_menu_item_object_id','5786'),(4258,5786,'_menu_item_object','custom'),(4259,5786,'_menu_item_target',''),(4260,5786,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4261,5786,'_menu_item_xfn',''),(4262,5786,'_menu_item_url','https://dm117.dev34.info/about-the-book/'),(4290,5786,'_menu_item_ct_megaprofile','0'),(4764,5868,'_elementor_data','[{\"id\":\"d8bdc5a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"57\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"13f51f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"12c802c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728},\"image_size\":\"full\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-35\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"4c2fc51\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"96\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"56\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"485cc85\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"title_text\":\"Contact Info\",\"description_text\":\"Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\\n<B>\\n\\nhowardbrown160@yahoo.com\",\"list\":[]},\"elements\":[],\"widgetType\":\"ct_fancy_box\"}],\"isInner\":false}],\"isInner\":false}]'),(4763,5868,'_elementor_version','3.1.4'),(4273,5788,'_menu_item_type','custom'),(4274,5788,'_menu_item_menu_item_parent','0'),(4275,5788,'_menu_item_object_id','5788'),(4276,5788,'_menu_item_object','custom'),(4277,5788,'_menu_item_target',''),(4278,5788,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4279,5788,'_menu_item_xfn',''),(4280,5788,'_menu_item_url','https://dm117.dev34.info/contact/'),(4298,5788,'_menu_item_ct_megaprofile','0'),(4283,5784,'_menu_item_ct_icon',''),(4284,5784,'_menu_item_ct_onepage','no-one-page'),(4285,5784,'_menu_item_ct_onepage_offset',''),(4287,5785,'_menu_item_ct_icon',''),(4288,5785,'_menu_item_ct_onepage','no-one-page'),(4289,5785,'_menu_item_ct_onepage_offset',''),(4291,5786,'_menu_item_ct_icon',''),(4292,5786,'_menu_item_ct_onepage','no-one-page'),(4293,5786,'_menu_item_ct_onepage_offset',''),(4762,5868,'_elementor_template_type','wp-page'),(4761,5868,'_elementor_edit_mode','builder'),(4760,5868,'_wp_page_template','default'),(4299,5788,'_menu_item_ct_icon',''),(4300,5788,'_menu_item_ct_onepage','no-one-page'),(4301,5788,'_menu_item_ct_onepage_offset',''),(4307,5789,'_elementor_css','a:6:{s:4:\"time\";i:1617485377;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4308,5790,'_elementor_edit_mode','builder'),(4309,5790,'_elementor_template_type','wp-page'),(4310,5790,'_elementor_version','3.1.4'),(4311,5790,'_wp_page_template','default'),(4312,5790,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4313,5790,'_elementor_css','a:6:{s:4:\"time\";i:1617485377;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4314,5791,'_elementor_edit_mode','builder'),(4315,5791,'_elementor_template_type','wp-page'),(4316,5791,'_elementor_version','3.1.4'),(4317,5791,'_wp_page_template','default'),(4318,5791,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4319,5791,'_elementor_css','a:6:{s:4:\"time\";i:1617485377;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4321,5792,'_elementor_edit_mode','builder'),(4322,5792,'_elementor_template_type','wp-page'),(4323,5792,'_elementor_version','3.1.4'),(4324,5792,'_wp_page_template','default'),(4325,5792,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4326,5793,'_elementor_edit_mode','builder'),(4327,5793,'_elementor_template_type','wp-page'),(4328,5793,'_elementor_version','3.1.4'),(4329,5793,'_wp_page_template','default'),(4330,5793,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4739,5866,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"342bfda\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0a536ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ed8d42b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d3f64eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"33010b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2af63e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7ac11e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"0a51d4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"aa04551\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4331,5794,'_elementor_edit_mode','builder'),(4332,5794,'_elementor_template_type','wp-page'),(4333,5794,'_elementor_version','3.1.4'),(4334,5794,'_wp_page_template','default'),(4335,5794,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4365,5799,'_elementor_edit_mode','builder'),(4366,5799,'_elementor_template_type','wp-page'),(4367,5799,'_elementor_version','3.1.4'),(4368,5799,'_wp_page_template','default'),(4369,5799,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4338,20,'_edit_lock','1617486435:1'),(4344,5795,'_elementor_css','a:6:{s:4:\"time\";i:1617481426;s:5:\"fonts\";a:2:{i:0;s:5:\"Rubik\";i:4;s:7:\"Poppins\";}s:5:\"icons\";a:2:{i:0;s:9:\"fa-brands\";i:4;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4350,5796,'_elementor_css','a:6:{s:4:\"time\";i:1617481426;s:5:\"fonts\";a:2:{i:0;s:5:\"Rubik\";i:4;s:7:\"Poppins\";}s:5:\"icons\";a:2:{i:0;s:9:\"fa-brands\";i:4;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4358,5798,'_wp_page_template','default'),(4359,5798,'_elementor_edit_mode','builder'),(4360,5798,'_elementor_template_type','wp-post'),(4361,5798,'_elementor_version','3.1.4'),(4362,5798,'_elementor_data','[{\"id\":\"4b35436\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"stretch_section\":\"section-stretched\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#680202\"},\"elements\":[{\"id\":\"2fa889c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fd8a94\",\"elType\":\"widget\",\"settings\":{\"title\":\"About:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"324188f1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/p>\",\"text_color\":\"#DDE8E8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"4d62e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec7fe7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation:\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"8389627\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-updated-1\",\"style\":\"style-light1\"},\"elements\":[],\"widgetType\":\"ct_navigation_menu\"}],\"isInner\":false},{\"id\":\"109a859b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f425fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"722cda7e\",\"elType\":\"widget\",\"settings\":{\"contact_info\":[{\"content\":\"info@dealersofthemacabre.com\",\"ct_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"icon_image\":{\"id\":4893,\"url\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/wp-content\\/uploads\\/2020\\/06\\/placeholder.png\"},\"_id\":\"b7476db\"}],\"content_color\":\"#DDE8E8\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Rubik\"},\"elements\":[],\"widgetType\":\"ct_contact_info\"},{\"id\":\"5e573de4\",\"elType\":\"widget\",\"settings\":{\"icons\":[{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2ca898c\",\"ct_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"}},{\"icon_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0fccd75\",\"ct_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"}}],\"_margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"style\":\"style2\",\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#BB0000\"},\"elements\":[],\"widgetType\":\"ct_icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"66f8378a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"extended\",\"background_background\":\"classic\",\"background_color\":\"#01080D\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2198aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"17b407c6\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p>DealersoftheMacabre.com \\u00a9 All rights reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#C2D5E7\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_family\":\"Poppins\",\"link_typography_typography\":\"custom\",\"link_typography_font_weight\":\"700\",\"link_color_hover\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4363,20,'_elementor_controls_usage','a:7:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"title_section\";a:4:{s:5:\"title\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:14:\"ct_text_editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"editor_section\";a:1:{s:11:\"text_editor\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_style_content\";a:9:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:22:\"typography_font_family\";i:2;s:5:\"align\";i:1;s:26:\"link_typography_typography\";i:1;s:27:\"link_typography_font_weight\";i:1;s:16:\"link_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:13:\"margin_tablet\";i:3;s:6:\"margin\";i:1;}}}}s:18:\"ct_navigation_menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"source_section\";a:2:{s:4:\"menu\";i:1;s:5:\"style\";i:1;}}}}s:15:\"ct_contact_info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:20:\"section_contact_info\";a:4:{s:12:\"contact_info\";i:1;s:13:\"content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:30:\"content_typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"ct_icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:5:\"icons\";i:1;s:5:\"style\";i:1;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:2;s:15:\"stretch_section\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}}}}}'),(4364,20,'_elementor_css','a:6:{s:4:\"time\";i:1617486442;s:5:\"fonts\";a:2:{i:0;s:5:\"Rubik\";i:2;s:7:\"Poppins\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4370,5799,'_elementor_css','a:6:{s:4:\"time\";i:1617486221;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4371,5800,'_elementor_edit_mode','builder'),(4372,5800,'_elementor_template_type','wp-page'),(4373,5800,'_elementor_version','3.1.4'),(4374,5800,'_wp_page_template','default'),(4375,5800,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"6b49578\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"b3c00c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ab4728e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b737eb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cd6a2ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4376,5800,'_elementor_css','a:6:{s:4:\"time\";i:1617486221;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4736,5866,'_elementor_template_type','wp-page'),(4737,5866,'_elementor_version','3.1.4'),(4738,5866,'_wp_page_template','default'),(4377,5801,'_elementor_edit_mode','builder'),(4378,5801,'_elementor_template_type','wp-page'),(4379,5801,'_elementor_version','3.1.4'),(4380,5801,'_wp_page_template','default');
INSERT INTO `wpiy_postmeta` VALUES (4381,5801,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"743c720\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"a2db920\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1c35d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1abe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20e79b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4382,5801,'_elementor_css','a:6:{s:4:\"time\";i:1617486221;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4384,5802,'_elementor_edit_mode','builder'),(4385,5802,'_elementor_template_type','wp-page'),(4386,5802,'_elementor_version','3.1.4'),(4387,5802,'_wp_page_template','default'),(4388,5802,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"743c720\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"a2db920\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1c35d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1abe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20e79b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4389,5803,'_elementor_edit_mode','builder'),(4390,5803,'_elementor_template_type','wp-page'),(4391,5803,'_elementor_version','3.1.4'),(4392,5803,'_wp_page_template','default'),(4393,5803,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"743c720\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"a2db920\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1c35d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1abe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20e79b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4735,5866,'_elementor_edit_mode','builder'),(4394,5804,'_elementor_edit_mode','builder'),(4395,5804,'_elementor_template_type','wp-page'),(4396,5804,'_elementor_version','3.1.4'),(4397,5804,'_wp_page_template','default'),(4398,5804,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"743c720\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a2db920\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1c35d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1abe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20e79b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4725,5864,'_elementor_edit_mode','builder'),(4726,5864,'_elementor_template_type','wp-page'),(4727,5864,'_elementor_version','3.1.4'),(4728,5864,'_wp_page_template','default'),(4729,5864,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"743c720\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a2db920\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1c35d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1abe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20e79b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4605,5840,'_wp_page_template','default'),(4606,5840,'_elementor_edit_mode','builder'),(4607,5840,'_elementor_template_type','wp-page'),(4608,5840,'_elementor_version','3.1.4'),(4609,5840,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31e096f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18cac2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"427d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c290b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c89ca6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"86c4ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"38a837c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"51c5de3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b743c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4603,5839,'_wp_attached_file','2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png'),(4604,5839,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:580;s:6:\"height\";i:202;s:4:\"file\";s:48:\"2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.02.46-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.02.46-PM-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.02.46-PM-250x202.png\";s:5:\"width\";i:250;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.02.46-PM-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.02.46-PM-250x202.png\";s:5:\"width\";i:250;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4610,5840,'_elementor_css','a:6:{s:4:\"time\";i:1620518478;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4611,5841,'_wp_page_template','default'),(4612,5841,'_elementor_edit_mode','builder'),(4613,5841,'_elementor_template_type','wp-page'),(4614,5841,'_elementor_version','3.1.4'),(4615,5841,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"31e096f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18cac2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"427d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c290b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"c89ca6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"86c4ffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"38a837c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"51c5de3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"79b743c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4616,5841,'_elementor_css','a:6:{s:4:\"time\";i:1620518478;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4642,5847,'_wp_page_template','default'),(4617,5842,'_wp_page_template','default'),(4618,5842,'_elementor_edit_mode','builder'),(4619,5842,'_elementor_template_type','wp-page'),(4620,5842,'_elementor_version','3.1.4'),(4621,5842,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4622,5842,'_elementor_css','a:6:{s:4:\"time\";i:1620518478;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4632,5845,'_wp_page_template','default'),(4633,5845,'_elementor_edit_mode','builder'),(4634,5845,'_elementor_template_type','wp-page'),(4635,5845,'_elementor_version','3.1.4'),(4636,5845,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4624,5843,'_wp_attached_file','2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png'),(4625,5843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1146;s:6:\"height\";i:440;s:4:\"file\";s:48:\"2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"consultio-large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-900x313.png\";s:5:\"width\";i:900;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-600x440.png\";s:5:\"width\";i:600;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png\";s:5:\"width\";i:600;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png\";s:5:\"width\";i:600;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.07.22-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4652,5849,'_elementor_template_type','wp-page'),(4653,5849,'_elementor_version','3.1.4'),(4654,5849,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4643,5847,'_elementor_edit_mode','builder'),(4644,5847,'_elementor_template_type','wp-page'),(4645,5847,'_elementor_version','3.1.4'),(4646,5847,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4637,5846,'_wp_page_template','default'),(4638,5846,'_elementor_edit_mode','builder'),(4639,5846,'_elementor_template_type','wp-page'),(4640,5846,'_elementor_version','3.1.4'),(4641,5846,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4650,5849,'_wp_page_template','default'),(4651,5849,'_elementor_edit_mode','builder'),(4648,5848,'_wp_attached_file','2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png'),(4649,5848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:524;s:6:\"height\";i:118;s:4:\"file\";s:48:\"2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.11.56-PM-150x118.png\";s:5:\"width\";i:150;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.11.56-PM-300x118.png\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.11.56-PM-250x118.png\";s:5:\"width\";i:250;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.11.56-PM-300x118.png\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.11.56-PM-250x118.png\";s:5:\"width\";i:250;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4655,5850,'_wp_page_template','default'),(4656,5850,'_elementor_edit_mode','builder'),(4657,5850,'_elementor_template_type','wp-page'),(4658,5850,'_elementor_version','3.1.4'),(4659,5850,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4660,5851,'_wp_page_template','default'),(4661,5851,'_elementor_edit_mode','builder'),(4662,5851,'_elementor_template_type','wp-page'),(4663,5851,'_elementor_version','3.1.4'),(4664,5851,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4668,5853,'_wp_page_template','default'),(4669,5853,'_elementor_edit_mode','builder'),(4670,5853,'_elementor_template_type','wp-page'),(4671,5853,'_elementor_version','3.1.4'),(4672,5853,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4666,5852,'_wp_attached_file','2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png'),(4667,5852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:594;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.13.04-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.13.04-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.13.04-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.13.04-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.13.04-PM-250x285.png\";s:5:\"width\";i:250;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4673,5854,'_wp_page_template','default'),(4674,5854,'_elementor_edit_mode','builder'),(4675,5854,'_elementor_template_type','wp-page'),(4676,5854,'_elementor_version','3.1.4'),(4677,5854,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4694,5858,'_wp_page_template','default'),(4678,5855,'_wp_page_template','default'),(4679,5855,'_elementor_edit_mode','builder'),(4680,5855,'_elementor_template_type','wp-page'),(4681,5855,'_elementor_version','3.1.4'),(4682,5855,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4684,5856,'_wp_page_template','default'),(4685,5856,'_elementor_edit_mode','builder'),(4686,5856,'_elementor_template_type','wp-page'),(4687,5856,'_elementor_version','3.1.4'),(4688,5856,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4689,5857,'_wp_page_template','default'),(4690,5857,'_elementor_edit_mode','builder'),(4691,5857,'_elementor_template_type','wp-page'),(4692,5857,'_elementor_version','3.1.4'),(4693,5857,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4695,5858,'_elementor_edit_mode','builder'),(4696,5858,'_elementor_template_type','wp-page'),(4697,5858,'_elementor_version','3.1.4'),(4698,5858,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4708,5861,'_wp_page_template','default'),(4709,5861,'_elementor_edit_mode','builder'),(4710,5861,'_elementor_template_type','wp-page'),(4711,5861,'_elementor_version','3.1.4'),(4712,5861,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4700,5859,'_wp_attached_file','2021/05/Screen-Shot-2021-05-08-at-5.14.51-PM.png'),(4701,5859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:604;s:6:\"height\";i:178;s:4:\"file\";s:48:\"2021/05/Screen-Shot-2021-05-08-at-5.14.51-PM.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2021-05-08-at-5.14.51-PM-300x88.png\";s:5:\"width\";i:300;s:6:\"height\";i:88;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.14.51-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"consultio-medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.14.51-PM-600x178.png\";s:5:\"width\";i:600;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.14.51-PM-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.14.51-PM-600x177.png\";s:5:\"width\";i:600;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.14.51-PM-250x178.png\";s:5:\"width\";i:250;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.14.51-PM-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.14.51-PM-600x177.png\";s:5:\"width\";i:600;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-05-08-at-5.14.51-PM-250x178.png\";s:5:\"width\";i:250;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4723,3493,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:1;s:11:\"title_color\";i:1;s:10:\"text_align\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:30:\"sub_title_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:8;s:7:\"link_to\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(4724,3493,'_elementor_css','a:6:{s:4:\"time\";i:1620519380;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4718,5863,'_wp_page_template','default'),(4719,5863,'_elementor_edit_mode','builder'),(4720,5863,'_elementor_template_type','wp-page'),(4721,5863,'_elementor_version','3.1.4'),(4722,5863,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4713,5862,'_wp_page_template','default'),(4714,5862,'_elementor_edit_mode','builder'),(4715,5862,'_elementor_template_type','wp-page'),(4716,5862,'_elementor_version','3.1.4'),(4717,5862,'_elementor_data','[{\"id\":\"7e679d25\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"5653413b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"312ff40a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"25ed6bb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bf594d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"366aacb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1f7058a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5b3f1231\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1b8c23e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"100a9d0c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"400dcd4b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"44f7aae1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c394e33\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dd803b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"5234584\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.02.46-PM.png\",\"id\":5839},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/bookshop.org\\/books\\/dealers-of-the-macabre\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"fd88658\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"84ebc14\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.07.22-PM.png\",\"id\":5843},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c3c44f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"a1cdfcf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.11.56-PM.png\",\"id\":5848},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.scribd.com\\/book\\/453953311\\/Dealers-of-the-Macabre\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a623ef5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"80ad41d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/Screen-Shot-2021-05-08-at-5.13.04-PM.png\",\"id\":5852},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.powells.com\\/book\\/dealers-of-the-macabre-9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4730,5865,'_elementor_edit_mode','builder'),(4731,5865,'_elementor_template_type','wp-page'),(4732,5865,'_elementor_version','3.1.4'),(4733,5865,'_wp_page_template','default'),(4734,5865,'_elementor_data','[{\"id\":\"d33abac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"cfbd7a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"742f7b7\",\"elType\":\"widget\",\"settings\":{\"revslidertitle\":\"Slider 1\",\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\" slidertitle=\\\"Slider 1\\\"][\\/rev_slider]\"},\"elements\":[],\"widgetType\":\"slider_revolution\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801c0e0\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\"},\"elements\":[{\"id\":\"9aeb951\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a478e3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Your Copy From One of These Major Retailers!\",\"title_color\":\"#FFCE00\",\"sub_title\":\"Available Now!\",\"sub_title_style\":\"style7\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"743c720\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#CD0505\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a2db920\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"460bc90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.47.26-PM.png\",\"id\":5750},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.amazon.com\\/dp\\/B086K4CK9V\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"1c35d39\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"2cca075\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.43.11-PM.png\",\"id\":5738},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.barnesandnoble.com\\/w\\/dealers-of-the-macabre-howard-d-brown\\/1136292629\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1abe6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"e1e91ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.45.59-PM.png\",\"id\":5746},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/books.apple.com\\/us\\/book\\/dealers-of-the-macabre\\/id1505338619\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"20e79b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"ad3c072\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-1.44.35-PM.png\",\"id\":5742},\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/www.brooklinebooksmith.com\\/book\\/9781645310082\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"718a5f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-section-03.jpg\",\"id\":5478},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4654186\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"73c32f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c63a58c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bab229\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"id\":5728}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"df91352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fa984d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dealers of the Macabre\",\"title_color\":\"#0D2252\",\"sub_title\":\"Latest Creation of Howard D. Brown\",\"sub_title_style\":\"style8\",\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"21\",\"left\":\"0\",\"isLinked\":false},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"3c3b806\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you to the backyard of the International Intelligence Community.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre has mystery, suspense, action\\u2013adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">These three classic CIA cases have remained a secret until now.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9693c10\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"cf8ce06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"005567e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d59bf71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8e559ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Hong Kong Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 1\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"7fd1575\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e732781\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"0ba6c01\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee219e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Plutonium Caper\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 2\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"c337dcb\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1978. You will go from the Deuxi\\u00e8me Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false},{\"id\":\"e46bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac4b7a6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"807b589\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"a6120bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"281d2a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/Screen-Shot-2021-04-03-at-2.17.55-PM.png\",\"id\":5764},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca19eab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ee4ce34\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Last Case\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Part 3\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#C50F0F\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"},{\"id\":\"e4594e1\",\"elType\":\"widget\",\"settings\":{\"text_editor\":\"<p style=\\\"text-align: center;\\\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"link_typography_typography\":\"custom\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"7\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"ct_text_editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9f2f41a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"63\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"65618fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"29ad7ed\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"687a098\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20},\"elements\":[],\"isInner\":true},{\"id\":\"d595e92\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":60},\"elements\":[{\"id\":\"d848877\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Readers Are Saying\",\"title_color\":\"#FFFFFF\",\"sub_title\":\"Reviews\",\"sub_title_style\":\"style9\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"19\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sub_title_color\":\"#D20D0D\",\"sub_title_typography_typography\":\"custom\",\"sub_title_typography_font_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"ct_heading\"}],\"isInner\":true},{\"id\":\"abf3c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.33200000000000073896444519050419330596923828125},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"0049d39\",\"elType\":\"widget\",\"settings\":{\"layout\":\"9\",\"testimonial\":[{\"_id\":\"afc4676\",\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Lincoln Jones\",\"description\":\"By far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\"},{\"image\":{\"url\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/golden-thumbsup.jpg\",\"id\":5771},\"title\":\"Sammantha Hunter \",\"description\":\"I\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again. \",\"_id\":\"35e31c1\"}],\"col_md\":\"2\",\"dots\":\"true\",\"style_l12\":\"style2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"col_lg\":\"2\",\"col_xl\":\"2\"},\"elements\":[],\"widgetType\":\"ct_testimonial_carousel\"}],\"isInner\":false}],\"isInner\":false}]'),(4746,5867,'_elementor_controls_usage','a:4:{s:10:\"ct_heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"title_section\";a:5:{s:5:\"title\";i:1;s:11:\"title_color\";i:1;s:10:\"text_align\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;}s:17:\"sub_title_section\";a:4:{s:9:\"sub_title\";i:1;s:15:\"sub_title_style\";i:1;s:31:\"sub_title_typography_typography\";i:1;s:30:\"sub_title_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:9;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"layout\";i:1;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:8;s:7:\"link_to\";i:8;s:4:\"link\";i:8;s:5:\"align\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(4747,5867,'_elementor_css','a:6:{s:4:\"time\";i:1620519380;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4748,3493,'_edit_last','1'),(4749,3493,'p_h_style1','themeoption'),(4754,3493,'ptitle_breadcrumb_color',''),(4755,3493,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4757,5785,'_wp_old_date','2021-04-03'),(4758,5786,'_wp_old_date','2021-04-03'),(4759,5788,'_wp_old_date','2021-04-03'),(4765,5868,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}s:12:\"ct_fancy_box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:15:\"section_content\";a:3:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:1;}}}}}'),(4766,5868,'_elementor_css','a:6:{s:4:\"time\";i:1620344139;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4767,24,'_edit_last','1'),(4768,24,'p_h_style1','themeoption'),(4769,24,'p_logo_dark','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4770,24,'p_logo_light','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4771,24,'p_logo_mobile','a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}'),(4772,24,'page_h_phone',''),(4773,24,'page_h_time',''),(4774,24,'h_custom_menu',''),(4775,24,'h_custom_menu_left',''),(4776,24,'h_custom_menu_right',''),(4777,24,'p_page_title_color',''),(4778,24,'ptitle_overlay','themeoption'),(4779,24,'ptitle_breadcrumb_page','themeoption'),(4780,24,'ptitle_breadcrumb_color',''),(4781,24,'p_bg_content','a:6:{s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}'),(4782,24,'loading_page','themeoption'),(4783,24,'loading_type','style1'),(4784,24,'page_back_totop','themeoption');
/*!40000 ALTER TABLE `wpiy_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_posts`
--

DROP TABLE IF EXISTS `wpiy_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_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=MyISAM AUTO_INCREMENT=5869 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_posts`
--

LOCK TABLES `wpiy_posts` WRITE;
/*!40000 ALTER TABLE `wpiy_posts` DISABLE KEYS */;
INSERT INTO `wpiy_posts` VALUES (237,1,'2019-11-09 02:05:09','2019-11-09 02:05:09','','author-01','','inherit','open','closed','','author-01','','','2019-11-09 02:05:09','2019-11-09 02:05:09','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/author-01.jpg',0,'attachment','image/jpeg',0),(238,1,'2019-11-09 02:05:10','2019-11-09 02:05:10','','author-02','','inherit','open','closed','','author-02','','','2019-11-09 02:05:10','2019-11-09 02:05:10','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg',0,'attachment','image/jpeg',0),(397,1,'2019-11-11 07:30:40','2019-11-11 07:30:40','','testimonial-01','','inherit','open','closed','','testimonial-01','','','2019-11-11 07:30:40','2019-11-11 07:30:40','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-01.jpg',0,'attachment','image/jpeg',0),(398,1,'2019-11-11 07:30:40','2019-11-11 07:30:40','','testimonial-02','','inherit','open','closed','','testimonial-02','','','2019-11-11 07:30:40','2019-11-11 07:30:40','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-02.jpg',0,'attachment','image/jpeg',0),(399,1,'2019-11-11 07:30:41','2019-11-11 07:30:41','','testimonial-03','','inherit','open','closed','','testimonial-03','','','2019-11-11 07:30:41','2019-11-11 07:30:41','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-03.jpg',0,'attachment','image/jpeg',0),(400,1,'2019-11-11 07:30:42','2019-11-11 07:30:42','','testimonial-04','','inherit','open','closed','','testimonial-04','','','2019-11-11 07:30:42','2019-11-11 07:30:42','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-04.jpg',0,'attachment','image/jpeg',0),(401,1,'2019-11-11 07:30:43','2019-11-11 07:30:43','','testimonial-05','','inherit','open','closed','','testimonial-05','','','2019-11-11 07:30:43','2019-11-11 07:30:43','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05.jpg',0,'attachment','image/jpeg',0),(402,1,'2019-11-11 07:30:44','2019-11-11 07:30:44','','testimonial-06','','inherit','open','closed','','testimonial-06','','','2019-11-11 07:30:44','2019-11-11 07:30:44','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06.jpg',0,'attachment','image/jpeg',0),(997,1,'2019-11-23 16:18:31','2019-11-23 16:18:31','','client-01','','inherit','open','closed','','client-01','','','2019-11-23 16:18:31','2019-11-23 16:18:31','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png',0,'attachment','image/png',0),(998,1,'2019-11-23 16:18:32','2019-11-23 16:18:32','','client-02','','inherit','open','closed','','client-02','','','2019-11-23 16:18:32','2019-11-23 16:18:32','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png',0,'attachment','image/png',0),(999,1,'2019-11-23 16:18:33','2019-11-23 16:18:33','','client-03','','inherit','open','closed','','client-03','','','2019-11-23 16:18:33','2019-11-23 16:18:33','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png',0,'attachment','image/png',0),(1000,1,'2019-11-23 16:18:34','2019-11-23 16:18:34','','client-04','','inherit','open','closed','','client-04','','','2019-11-23 16:18:34','2019-11-23 16:18:34','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png',0,'attachment','image/png',0),(1512,1,'2019-11-30 07:23:08','2019-11-30 07:23:08','','bg-page-title','','inherit','open','closed','','bg-page-title','','','2019-11-30 07:23:08','2019-11-30 07:23:08','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/bg-page-title.jpg',0,'attachment','image/jpeg',0),(1516,1,'2019-11-30 07:31:11','2019-11-30 07:31:11','','bg-footer1','','inherit','open','closed','','bg-footer1','','','2019-11-30 07:31:11','2019-11-30 07:31:11','',0,'https://dm117.dev34.info/wp-content/uploads/2019/10/bg-footer1.png',0,'attachment','image/png',0),(1522,1,'2019-11-30 07:49:44','2019-11-30 07:49:44','','app-store','','inherit','open','closed','','app-store','','','2019-11-30 07:49:44','2019-11-30 07:49:44','',0,'https://dm117.dev34.info/wp-content/uploads/2019/10/app-store.png',0,'attachment','image/png',0),(1524,1,'2019-11-30 07:54:04','2019-11-30 07:54:04','','google-play','','inherit','open','closed','','google-play','','','2019-11-30 07:54:04','2019-11-30 07:54:04','',0,'https://dm117.dev34.info/wp-content/uploads/2019/10/google-play.png',0,'attachment','image/png',0),(1530,1,'2019-12-02 02:49:09','2019-12-02 02:49:09','','theme-01','','inherit','open','closed','','theme-01','','','2019-12-02 02:49:09','2019-12-02 02:49:09','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg',0,'attachment','image/jpeg',0),(1531,1,'2019-12-02 02:49:13','2019-12-02 02:49:13','','theme-02','','inherit','open','closed','','theme-02','','','2019-12-02 02:49:13','2019-12-02 02:49:13','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-02.jpg',0,'attachment','image/jpeg',0),(1532,1,'2019-12-02 02:49:17','2019-12-02 02:49:17','','theme-03','','inherit','open','closed','','theme-03','','','2019-12-02 02:49:17','2019-12-02 02:49:17','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-03.jpg',0,'attachment','image/jpeg',0),(1533,1,'2019-12-02 02:49:21','2019-12-02 02:49:21','','theme-04','','inherit','open','closed','','theme-04','','','2019-12-02 02:49:21','2019-12-02 02:49:21','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-04.jpg',0,'attachment','image/jpeg',0),(1534,1,'2019-12-02 02:49:24','2019-12-02 02:49:24','','theme-05','','inherit','open','closed','','theme-05','','','2019-12-02 02:49:24','2019-12-02 02:49:24','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg',0,'attachment','image/jpeg',0),(1535,1,'2019-12-02 02:49:28','2019-12-02 02:49:28','','theme-06','','inherit','open','closed','','theme-06','','','2019-12-02 02:49:28','2019-12-02 02:49:28','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-06.jpg',0,'attachment','image/jpeg',0),(1536,1,'2019-12-02 02:49:31','2019-12-02 02:49:31','','theme-07','','inherit','open','closed','','theme-07','','','2019-12-02 02:49:31','2019-12-02 02:49:31','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-07.jpg',0,'attachment','image/jpeg',0),(1537,1,'2019-12-02 02:49:34','2019-12-02 02:49:34','','theme-08','','inherit','open','closed','','theme-08','','','2019-12-02 02:49:34','2019-12-02 02:49:34','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-08.jpg',0,'attachment','image/jpeg',0),(1538,1,'2019-12-02 02:49:35','2019-12-02 02:49:35','','theme-09','','inherit','open','closed','','theme-09','','','2019-12-02 02:49:35','2019-12-02 02:49:35','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg',0,'attachment','image/jpeg',0),(1539,1,'2019-12-02 02:49:37','2019-12-02 02:49:37','','theme-10','','inherit','open','closed','','theme-10','','','2019-12-02 02:49:37','2019-12-02 02:49:37','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg',0,'attachment','image/jpeg',0),(1540,1,'2019-12-02 02:49:39','2019-12-02 02:49:39','','theme-11','','inherit','open','closed','','theme-11','','','2019-12-02 02:49:39','2019-12-02 02:49:39','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-11.jpg',0,'attachment','image/jpeg',0),(1541,1,'2019-12-02 02:49:40','2019-12-02 02:49:40','','theme-12','','inherit','open','closed','','theme-12','','','2019-12-02 02:49:40','2019-12-02 02:49:40','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-12.jpg',0,'attachment','image/jpeg',0),(1542,1,'2019-12-02 02:49:42','2019-12-02 02:49:42','','theme-13','','inherit','open','closed','','theme-13','','','2019-12-02 02:49:42','2019-12-02 02:49:42','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg',0,'attachment','image/jpeg',0),(1543,1,'2019-12-02 02:49:44','2019-12-02 02:49:44','','theme-14','','inherit','open','closed','','theme-14','','','2019-12-02 02:49:44','2019-12-02 02:49:44','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/theme-14.jpg',0,'attachment','image/jpeg',0),(1552,1,'2019-12-02 02:59:25','2019-12-02 02:59:25','','gallery-01','','inherit','open','closed','','gallery-01','','','2019-12-02 02:59:25','2019-12-02 02:59:25','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/gallery-01.jpg',0,'attachment','image/jpeg',0),(1553,1,'2019-12-02 02:59:29','2019-12-02 02:59:29','','gallery-02','','inherit','open','closed','','gallery-02','','','2019-12-02 02:59:29','2019-12-02 02:59:29','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/gallery-02.jpg',0,'attachment','image/jpeg',0),(1554,1,'2019-12-02 02:59:33','2019-12-02 02:59:33','','gallery-03','','inherit','open','closed','','gallery-03','','','2019-12-02 02:59:33','2019-12-02 02:59:33','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/gallery-03.jpg',0,'attachment','image/jpeg',0),(1555,1,'2019-12-02 02:59:36','2019-12-02 02:59:36','','gallery-04','','inherit','open','closed','','gallery-04','','','2019-12-02 02:59:36','2019-12-02 02:59:36','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/gallery-04.jpg',0,'attachment','image/jpeg',0),(1556,1,'2019-12-02 02:59:41','2019-12-02 02:59:41','','gallery-05','','inherit','open','closed','','gallery-05','','','2019-12-02 02:59:41','2019-12-02 02:59:41','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/gallery-05.jpg',0,'attachment','image/jpeg',0),(1557,1,'2019-12-02 02:59:45','2019-12-02 02:59:45','','gallery-06','','inherit','open','closed','','gallery-06','','','2019-12-02 02:59:45','2019-12-02 02:59:45','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/gallery-06.jpg',0,'attachment','image/jpeg',0),(1568,1,'2019-12-02 07:26:03','2019-12-02 07:26:03','','contact-about1','','inherit','open','closed','','contact-about1','','','2019-12-02 07:26:03','2019-12-02 07:26:03','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/contact-about1.png',0,'attachment','image/png',0),(1656,1,'2019-12-02 13:48:10','2019-12-02 13:48:10','','testimonial-07','','inherit','open','closed','','testimonial-07','','','2019-12-02 13:48:10','2019-12-02 13:48:10','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/testimonial-07.jpg',0,'attachment','image/jpeg',0),(1657,1,'2019-12-02 13:48:11','2019-12-02 13:48:11','','testimonial-08','','inherit','open','closed','','testimonial-08','','','2019-12-02 13:48:11','2019-12-02 13:48:11','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/testimonial-08.jpg',0,'attachment','image/jpeg',0),(1658,1,'2019-12-02 13:48:13','2019-12-02 13:48:13','','testimonial-09','','inherit','open','closed','','testimonial-09','','','2019-12-02 13:48:13','2019-12-02 13:48:13','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/testimonial-09.jpg',0,'attachment','image/jpeg',0),(1678,1,'2019-12-02 16:00:11','2019-12-02 16:00:11','','client-05','','inherit','open','closed','','client-05','','','2019-12-02 16:00:11','2019-12-02 16:00:11','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/client-05.png',0,'attachment','image/png',0),(1690,1,'2019-12-02 16:18:03','2019-12-02 16:18:03','','team-01','','inherit','open','closed','','team-01','','','2019-12-02 16:18:03','2019-12-02 16:18:03','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/team-01.jpg',0,'attachment','image/jpeg',0),(1691,1,'2019-12-02 16:18:05','2019-12-02 16:18:05','','team-02','','inherit','open','closed','','team-02','','','2019-12-02 16:18:05','2019-12-02 16:18:05','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/team-02.jpg',0,'attachment','image/jpeg',0),(1692,1,'2019-12-02 16:18:07','2019-12-02 16:18:07','','team-03','','inherit','open','closed','','team-03','','','2019-12-02 16:18:07','2019-12-02 16:18:07','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/team-03.jpg',0,'attachment','image/jpeg',0),(1693,1,'2019-12-02 16:18:08','2019-12-02 16:18:08','','team-04','','inherit','open','closed','','team-04','','','2019-12-02 16:18:08','2019-12-02 16:18:08','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/team-04.jpg',0,'attachment','image/jpeg',0),(1706,1,'2019-12-03 03:46:51','2019-12-03 03:46:51','','team-single','','inherit','open','closed','','team-single','','','2019-12-03 03:46:51','2019-12-03 03:46:51','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/team-single.jpg',0,'attachment','image/jpeg',0),(1860,1,'2019-12-04 08:23:42','2019-12-04 08:23:42','','theme-15','','inherit','open','closed','','theme-15','','','2019-12-04 08:23:42','2019-12-04 08:23:42','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/theme-15.jpg',0,'attachment','image/jpeg',0),(1877,1,'2019-12-04 09:34:55','2019-12-04 09:34:55','','about1','','inherit','open','closed','','about1','','','2019-12-04 09:34:55','2019-12-04 09:34:55','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/about1.png',0,'attachment','image/png',0),(1892,1,'2019-12-04 09:47:40','2019-12-04 09:47:40','','signature','','inherit','open','closed','','signature','','','2019-12-04 09:47:40','2019-12-04 09:47:40','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/signature.png',0,'attachment','image/png',0),(1896,1,'2019-12-04 09:57:44','2019-12-04 09:57:44','','about-gap','','inherit','open','closed','','about-gap','','','2019-12-04 09:57:44','2019-12-04 09:57:44','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/about-gap.png',0,'attachment','image/png',0),(1925,1,'2019-12-05 07:07:49','2019-12-05 07:07:49','','BlackBlazer','','inherit','open','closed','','blackblazer','','','2019-12-05 07:07:49','2019-12-05 07:07:49','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/BlackBlazer.jpg',0,'attachment','image/jpeg',0),(1926,1,'2019-12-05 07:07:52','2019-12-05 07:07:52','','BlackDress','','inherit','open','closed','','blackdress','','','2019-12-05 07:07:52','2019-12-05 07:07:52','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/BlackDress.jpg',0,'attachment','image/jpeg',0),(1927,1,'2019-12-05 07:07:54','2019-12-05 07:07:54','','BlackShoes','','inherit','open','closed','','blackshoes','','','2019-12-05 07:07:54','2019-12-05 07:07:54','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/BlackShoes.jpg',0,'attachment','image/jpeg',0),(1928,1,'2019-12-05 07:07:56','2019-12-05 07:07:56','','BlackSuit','','inherit','open','closed','','blacksuit','','','2019-12-05 07:07:56','2019-12-05 07:07:56','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/BlackSuit.jpg',0,'attachment','image/jpeg',0),(1929,1,'2019-12-05 07:07:58','2019-12-05 07:07:58','','CamiSkaterFront','','inherit','open','closed','','camiskaterfront','','','2019-12-05 07:07:58','2019-12-05 07:07:58','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/CamiSkaterFront.jpg',0,'attachment','image/jpeg',0),(1930,1,'2019-12-05 07:08:00','2019-12-05 07:08:00','','ChelseaBoots','','inherit','open','closed','','chelseaboots','','','2019-12-05 07:08:00','2019-12-05 07:08:00','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/ChelseaBoots.jpg',0,'attachment','image/jpeg',0),(1931,1,'2019-12-05 07:08:02','2019-12-05 07:08:02','','FlatShoes','','inherit','open','closed','','flatshoes','','','2019-12-05 07:08:02','2019-12-05 07:08:02','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/FlatShoes.jpg',0,'attachment','image/jpeg',0),(1932,1,'2019-12-05 07:08:03','2019-12-05 07:08:03','','GreyShirt','','inherit','open','closed','','greyshirt','','','2019-12-05 07:08:03','2019-12-05 07:08:03','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/GreyShirt.jpg',0,'attachment','image/jpeg',0),(1933,1,'2019-12-05 07:08:04','2019-12-05 07:08:04','','LightBlueShirt','','inherit','open','closed','','lightblueshirt','','','2019-12-05 07:08:04','2019-12-05 07:08:04','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/LightBlueShirt.jpg',0,'attachment','image/jpeg',0),(1934,1,'2019-12-05 07:08:06','2019-12-05 07:08:06','','MonochromeCamiMidi','','inherit','open','closed','','monochromecamimidi','','','2019-12-05 07:08:06','2019-12-05 07:08:06','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/MonochromeCamiMidi.jpg',0,'attachment','image/jpeg',0),(1935,1,'2019-12-05 07:08:07','2019-12-05 07:08:07','','PureSilkBlackTie','','inherit','open','closed','','puresilkblacktie','','','2019-12-05 07:08:07','2019-12-05 07:08:07','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/PureSilkBlackTie.jpg',0,'attachment','image/jpeg',0),(1936,1,'2019-12-05 07:08:08','2019-12-05 07:08:08','','PureSilkBlueTie','','inherit','open','closed','','puresilkbluetie','','','2019-12-05 07:08:08','2019-12-05 07:08:08','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/PureSilkBlueTie.jpg',0,'attachment','image/jpeg',0),(1937,1,'2019-12-05 07:08:09','2019-12-05 07:08:09','','PureSilkGreyTie','','inherit','open','closed','','puresilkgreytie','','','2019-12-05 07:08:09','2019-12-05 07:08:09','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/PureSilkGreyTie.jpg',0,'attachment','image/jpeg',0),(1938,1,'2019-12-05 07:08:10','2019-12-05 07:08:10','','SlimFitBrightBlue','','inherit','open','closed','','slimfitbrightblue','','','2019-12-05 07:08:10','2019-12-05 07:08:10','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/SlimFitBrightBlue.jpg',0,'attachment','image/jpeg',0),(1939,1,'2019-12-05 07:08:11','2019-12-05 07:08:11','','WhiteTailoredBlazer','','inherit','open','closed','','whitetailoredblazer','','','2019-12-05 07:08:11','2019-12-05 07:08:11','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/WhiteTailoredBlazer.jpg',0,'attachment','image/jpeg',0),(1985,1,'2019-12-05 09:15:30','2019-12-05 09:15:30','','icon-google','','inherit','open','closed','','icon-google','','','2019-12-05 09:15:30','2019-12-05 09:15:30','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/icon-google.png',0,'attachment','image/png',0),(1988,1,'2019-12-05 09:23:43','2019-12-05 09:23:43','','icon-career','','inherit','open','closed','','icon-career','','','2019-12-05 09:23:43','2019-12-05 09:23:43','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/icon-career.png',0,'attachment','image/png',0),(1989,1,'2019-12-05 09:23:45','2019-12-05 09:23:45','','icon-codecanyon','','inherit','open','closed','','icon-codecanyon','','','2019-12-05 09:23:45','2019-12-05 09:23:45','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/icon-codecanyon.png',0,'attachment','image/png',0),(1990,1,'2019-12-05 09:23:46','2019-12-05 09:23:46','','icon-envato','','inherit','open','closed','','icon-envato','','','2019-12-05 09:23:46','2019-12-05 09:23:46','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/icon-envato.png',0,'attachment','image/png',0),(1991,1,'2019-12-05 09:23:48','2019-12-05 09:23:48','','icon-themeforest','','inherit','open','closed','','icon-themeforest','','','2019-12-05 09:23:48','2019-12-05 09:23:48','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/icon-themeforest.png',0,'attachment','image/png',0),(2056,1,'2019-12-06 07:18:49','2019-12-06 07:18:49','','bg-section-01','','inherit','open','closed','','bg-section-01','','','2019-12-06 07:18:49','2019-12-06 07:18:49','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/bg-section-01.png',0,'attachment','image/png',0),(2070,1,'2019-12-06 08:29:04','2019-12-06 08:29:04','','bg-section-02','','inherit','open','closed','','bg-section-02','','','2019-12-06 08:29:04','2019-12-06 08:29:04','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/bg-section-02.png',0,'attachment','image/png',0),(2074,1,'2019-12-06 08:46:48','2019-12-06 08:46:48','','testimonial-10','','inherit','open','closed','','testimonial-10','','','2019-12-06 08:46:48','2019-12-06 08:46:48','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/testimonial-10.jpg',0,'attachment','image/jpeg',0),(2091,1,'2019-12-07 03:23:07','2019-12-07 03:23:07','','bg-section-03','','inherit','open','closed','','bg-section-03','','','2019-12-07 03:23:07','2019-12-07 03:23:07','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/bg-section-03.png',0,'attachment','image/png',0),(2114,1,'2019-12-07 04:07:52','2019-12-07 04:07:52','','home-team-01','','inherit','open','closed','','home-team-01','','','2019-12-07 04:07:52','2019-12-07 04:07:52','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/home-team-01.jpg',0,'attachment','image/jpeg',0),(2115,1,'2019-12-07 04:07:56','2019-12-07 04:07:56','','home-team-02','','inherit','open','closed','','home-team-02','','','2019-12-07 04:07:56','2019-12-07 04:07:56','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/home-team-02.jpg',0,'attachment','image/jpeg',0),(2116,1,'2019-12-07 04:07:58','2019-12-07 04:07:58','','home-team-03','','inherit','open','closed','','home-team-03','','','2019-12-07 04:07:58','2019-12-07 04:07:58','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/home-team-03.jpg',0,'attachment','image/jpeg',0),(2117,1,'2019-12-07 04:08:23','2019-12-07 04:08:23','','home-team-04','','inherit','open','closed','','home-team-04','','','2019-12-07 04:08:23','2019-12-07 04:08:23','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/home-team-04.jpg',0,'attachment','image/jpeg',0),(2125,1,'2019-12-07 08:45:56','2019-12-07 08:45:56','','bg-section-04','','inherit','open','closed','','bg-section-04','','','2019-12-07 08:45:56','2019-12-07 08:45:56','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/bg-section-04.png',0,'attachment','image/png',0),(2170,1,'2019-12-07 15:24:17','2019-12-07 15:24:17','','home-author-01','','inherit','open','closed','','home-author-01','','','2019-12-07 15:24:17','2019-12-07 15:24:17','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/home-author-01.jpg',0,'attachment','image/jpeg',0),(2171,1,'2019-12-07 15:24:19','2019-12-07 15:24:19','','home-author-02','','inherit','open','closed','','home-author-02','','','2019-12-07 15:24:19','2019-12-07 15:24:19','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/home-author-02.jpg',0,'attachment','image/jpeg',0),(2179,1,'2019-12-07 16:19:38','2019-12-07 16:19:38','','award-year','','inherit','open','closed','','award-year','','','2019-12-07 16:19:38','2019-12-07 16:19:38','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/award-year.png',0,'attachment','image/png',0),(2180,1,'2019-12-07 16:19:39','2019-12-07 16:19:39','','award','','inherit','open','closed','','award','','','2019-12-07 16:19:39','2019-12-07 16:19:39','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/award.png',0,'attachment','image/png',0),(2306,1,'2019-12-12 07:41:27','2019-12-12 07:41:27','','banner-01','','inherit','open','closed','','banner-01','','','2019-12-12 07:41:27','2019-12-12 07:41:27','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/banner-01.png',0,'attachment','image/png',0),(2319,1,'2019-12-12 08:10:52','2019-12-12 08:10:52','','signature-02','','inherit','open','closed','','signature-02','','','2019-12-12 08:10:52','2019-12-12 08:10:52','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/signature-02.png',0,'attachment','image/png',0),(2391,1,'2019-12-13 04:31:47','2019-12-13 04:31:47','','bg-section-05','','inherit','open','closed','','bg-section-05','','','2019-12-13 04:31:47','2019-12-13 04:31:47','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/bg-section-05.png',0,'attachment','image/png',0),(2528,1,'2019-12-14 02:24:48','2019-12-14 02:24:48','','bg-section-07','','inherit','open','closed','','bg-section-07','','','2019-12-14 02:24:48','2019-12-14 02:24:48','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/bg-section-07.png',0,'attachment','image/png',0),(2602,1,'2019-12-14 09:12:55','2019-12-14 09:12:55','','bg-section-07','','inherit','open','closed','','bg-section-07-2','','','2019-12-14 09:12:55','2019-12-14 09:12:55','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/bg-section-07-1.png',0,'attachment','image/png',0),(2606,1,'2019-12-14 09:19:23','2019-12-14 09:19:23','','h3-team-02','','inherit','open','closed','','h3-team-02','','','2019-12-14 09:19:23','2019-12-14 09:19:23','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/h3-team-02.png',0,'attachment','image/png',0),(2608,1,'2019-12-14 09:26:37','2019-12-14 09:26:37','','h3-team-01','','inherit','open','closed','','h3-team-01','','','2019-12-14 09:26:37','2019-12-14 09:26:37','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/h3-team-01.jpg',0,'attachment','image/jpeg',0),(2609,1,'2019-12-14 09:26:39','2019-12-14 09:26:39','','h3-team-03','','inherit','open','closed','','h3-team-03','','','2019-12-14 09:26:39','2019-12-14 09:26:39','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/h3-team-03.jpg',0,'attachment','image/jpeg',0),(2610,1,'2019-12-14 09:26:40','2019-12-14 09:26:40','','h3-team-04','','inherit','open','closed','','h3-team-04','','','2019-12-14 09:26:40','2019-12-14 09:26:40','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/h3-team-04.jpg',0,'attachment','image/jpeg',0),(2671,1,'2019-12-16 02:27:34','2019-12-16 02:27:34','','h3-map','','inherit','open','closed','','h3-map','','','2019-12-16 02:27:34','2019-12-16 02:27:34','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/h3-map.png',0,'attachment','image/png',0),(2725,1,'2019-12-17 06:40:49','2019-12-17 06:40:49','','h4-about1','','inherit','open','closed','','h4-about1','','','2019-12-17 06:40:49','2019-12-17 06:40:49','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/h4-about1.png',0,'attachment','image/png',0),(2845,1,'2019-12-18 02:40:41','2019-12-18 02:40:41','','h4-map','','inherit','open','closed','','h4-map','','','2019-12-18 02:40:41','2019-12-18 02:40:41','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/h4-map.png',0,'attachment','image/png',0),(3282,1,'2020-01-31 08:29:09','2020-01-31 08:29:09','','h6-bg-section-01','','inherit','open','closed','','h6-bg-section-01','','','2020-01-31 08:29:09','2020-01-31 08:29:09','',0,'https://dm117.dev34.info/wp-content/uploads/2020/01/h6-bg-section-01.png',0,'attachment','image/png',0),(3383,1,'2020-02-02 09:08:29','2020-02-02 09:08:29','','h6-team1','','inherit','open','closed','','h6-team1','','','2020-02-02 09:08:29','2020-02-02 09:08:29','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/h6-team1.jpg',0,'attachment','image/jpeg',0),(3399,1,'2020-02-02 10:27:43','2020-02-02 10:27:43','','h6-team2','','inherit','open','closed','','h6-team2','','','2020-02-02 10:27:43','2020-02-02 10:27:43','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/h6-team2.jpg',0,'attachment','image/jpeg',0),(3400,1,'2020-02-02 10:27:45','2020-02-02 10:27:45','','h6-team3','','inherit','open','closed','','h6-team3','','','2020-02-02 10:27:45','2020-02-02 10:27:45','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/h6-team3.jpg',0,'attachment','image/jpeg',0),(3401,1,'2020-02-02 10:27:47','2020-02-02 10:27:47','','h6-team4','','inherit','open','closed','','h6-team4','','','2020-02-02 10:27:47','2020-02-02 10:27:47','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/h6-team4.jpg',0,'attachment','image/jpeg',0),(3411,1,'2020-02-02 13:18:02','2020-02-02 13:18:02','','h6-bg-section-02','','inherit','open','closed','','h6-bg-section-02','','','2020-02-02 13:18:02','2020-02-02 13:18:02','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/h6-bg-section-02.png',0,'attachment','image/png',0),(3614,1,'2020-02-07 06:44:34','2020-02-07 06:44:34','','theme23','','inherit','open','closed','','theme23','','','2020-02-07 06:44:34','2020-02-07 06:44:34','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/theme23.jpg',0,'attachment','image/jpeg',0),(3628,1,'2020-02-07 07:07:17','2020-02-07 07:07:17','','about-section-01','','inherit','open','closed','','about-section-01','','','2020-02-07 07:07:17','2020-02-07 07:07:17','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/about-section-01.jpg',0,'attachment','image/jpeg',0),(3663,1,'2020-02-07 10:00:49','2020-02-07 10:00:49','','about4-icon1','','inherit','open','closed','','about4-icon1','','','2020-02-07 10:00:49','2020-02-07 10:00:49','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/about4-icon1.png',0,'attachment','image/png',0),(3664,1,'2020-02-07 10:00:51','2020-02-07 10:00:51','','about4-icon2','','inherit','open','closed','','about4-icon2','','','2020-02-07 10:00:51','2020-02-07 10:00:51','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/about4-icon2.png',0,'attachment','image/png',0),(3665,1,'2020-02-07 10:00:53','2020-02-07 10:00:53','','about4-icon3','','inherit','open','closed','','about4-icon3','','','2020-02-07 10:00:53','2020-02-07 10:00:53','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/about4-icon3.png',0,'attachment','image/png',0),(3669,1,'2020-02-07 10:07:29','2020-02-07 10:07:29','','about4-bg-section1','','inherit','open','closed','','about4-bg-section1','','','2020-02-07 10:07:29','2020-02-07 10:07:29','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/about4-bg-section1.png',0,'attachment','image/png',0),(3679,1,'2020-02-07 15:08:10','2020-02-07 15:08:10','','h4-about1','','inherit','open','closed','','h4-about1-2','','','2020-02-07 15:08:10','2020-02-07 15:08:10','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/h4-about1.png',0,'attachment','image/png',0),(3681,1,'2020-02-07 15:10:20','2020-02-07 15:10:20','','about4-shape1','','inherit','open','closed','','about4-shape1','','','2020-02-07 15:10:20','2020-02-07 15:10:20','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/about4-shape1.png',0,'attachment','image/png',0),(3852,1,'2020-02-08 16:16:38','2020-02-08 16:16:38','','contact-v4','','inherit','open','closed','','contact-v4','','','2020-02-08 16:16:38','2020-02-08 16:16:38','',0,'https://dm117.dev34.info/wp-content/uploads/2020/02/contact-v4.png',0,'attachment','image/png',0),(4639,1,'2020-05-07 07:38:27','2020-05-07 07:38:27','','bg-page-title-u','','inherit','open','closed','','bg-page-title-u','','','2020-05-07 07:38:27','2020-05-07 07:38:27','',0,'https://dm117.dev34.info/wp-content/uploads/2020/05/bg-page-title-u.jpg',0,'attachment','image/jpeg',0),(4703,1,'2020-05-08 03:57:30','2020-05-08 03:57:30','','update-blog1','','inherit','open','closed','','update-blog1','','','2020-05-08 03:57:30','2020-05-08 03:57:30','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/update-blog1.jpg',0,'attachment','image/jpeg',0),(4704,1,'2020-05-08 03:57:32','2020-05-08 03:57:32','','update-blog2','','inherit','open','closed','','update-blog2','','','2020-05-08 03:57:32','2020-05-08 03:57:32','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/update-blog2.jpg',0,'attachment','image/jpeg',0),(4705,1,'2020-05-08 03:57:33','2020-05-08 03:57:33','','update-blog3','','inherit','open','closed','','update-blog3','','','2020-05-08 03:57:33','2020-05-08 03:57:33','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/update-blog3.jpg',0,'attachment','image/jpeg',0),(4715,1,'2020-05-08 08:57:16','2020-05-08 08:57:16','','update-service-01','','inherit','open','closed','','update-service-01','','','2020-05-08 08:57:16','2020-05-08 08:57:16','',0,'https://dm117.dev34.info/wp-content/uploads/2020/03/update-service-01.jpg',0,'attachment','image/jpeg',0),(4716,1,'2020-05-08 08:58:57','2020-05-08 08:58:57','','update-service-02','','inherit','open','closed','','update-service-02','','','2020-05-08 08:58:57','2020-05-08 08:58:57','',0,'https://dm117.dev34.info/wp-content/uploads/2020/03/update-service-02.jpg',0,'attachment','image/jpeg',0),(4801,1,'2020-05-09 08:55:25','2020-05-09 08:55:25','','corporate-portfolio1','','inherit','open','closed','','corporate-portfolio1','','','2020-05-09 08:55:25','2020-05-09 08:55:25','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/corporate-portfolio1.jpg',0,'attachment','image/jpeg',0),(4802,1,'2020-05-09 08:55:27','2020-05-09 08:55:27','','corporate-portfolio2','','inherit','open','closed','','corporate-portfolio2','','','2020-05-09 08:55:27','2020-05-09 08:55:27','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/corporate-portfolio2.jpg',0,'attachment','image/jpeg',0),(4803,1,'2020-05-09 08:55:29','2020-05-09 08:55:29','','corporate-portfolio3','','inherit','open','closed','','corporate-portfolio3','','','2020-05-09 08:55:29','2020-05-09 08:55:29','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/corporate-portfolio3.jpg',0,'attachment','image/jpeg',0),(4804,1,'2020-05-09 08:55:30','2020-05-09 08:55:30','','corporate-portfolio4','','inherit','open','closed','','corporate-portfolio4','','','2020-05-09 08:55:30','2020-05-09 08:55:30','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/corporate-portfolio4.jpg',0,'attachment','image/jpeg',0),(4805,1,'2020-05-09 08:55:31','2020-05-09 08:55:31','','corporate-portfolio5','','inherit','open','closed','','corporate-portfolio5','','','2020-05-09 08:55:31','2020-05-09 08:55:31','',0,'https://dm117.dev34.info/wp-content/uploads/2019/12/corporate-portfolio5.jpg',0,'attachment','image/jpeg',0),(4959,1,'2020-06-20 09:26:50','2020-06-20 09:26:50','','client-img1','','inherit','open','closed','','client-img1','','','2020-06-20 09:26:50','2020-06-20 09:26:50','',0,'https://dm117.dev34.info/wp-content/uploads/2020/06/client-img1.png',0,'attachment','image/png',0),(4960,1,'2020-06-20 09:26:53','2020-06-20 09:26:53','','client-img2','','inherit','open','closed','','client-img2','','','2020-06-20 09:26:53','2020-06-20 09:26:53','',0,'https://dm117.dev34.info/wp-content/uploads/2020/06/client-img2.png',0,'attachment','image/png',0),(4961,1,'2020-06-20 09:26:54','2020-06-20 09:26:54','','client-img3','','inherit','open','closed','','client-img3','','','2020-06-20 09:26:54','2020-06-20 09:26:54','',0,'https://dm117.dev34.info/wp-content/uploads/2020/06/client-img3.png',0,'attachment','image/png',0),(4962,1,'2020-06-20 09:26:56','2020-06-20 09:26:56','','client-img4','','inherit','open','closed','','client-img4','','','2020-06-20 09:26:56','2020-06-20 09:26:56','',0,'https://dm117.dev34.info/wp-content/uploads/2020/06/client-img4.png',0,'attachment','image/png',0),(4963,1,'2020-06-20 09:26:59','2020-06-20 09:26:59','','client-img5','','inherit','open','closed','','client-img5','','','2020-06-20 09:26:59','2020-06-20 09:26:59','',0,'https://dm117.dev34.info/wp-content/uploads/2020/06/client-img5.png',0,'attachment','image/png',0),(5345,1,'2020-10-01 07:09:28','2020-10-01 07:09:28','','logo','','inherit','open','closed','','logo','','','2020-10-01 07:09:28','2020-10-01 07:09:28','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/logo.png',0,'attachment','image/png',0),(5346,1,'2020-10-01 07:12:06','2020-10-01 07:12:06','','favicon','','inherit','open','closed','','favicon','','','2020-10-01 07:12:06','2020-10-01 07:12:06','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/favicon.png',0,'attachment','image/png',0),(5365,1,'2020-10-02 07:08:13','2020-10-02 07:08:13','','logo-footer','','inherit','open','closed','','logo-footer','','','2020-10-02 07:08:13','2020-10-02 07:08:13','',0,'https://dm117.dev34.info/wp-content/uploads/2019/10/logo-footer.png',0,'attachment','image/png',0),(5370,1,'2020-10-05 06:50:41','2020-10-05 06:50:41','','bg-slider-01','','inherit','open','closed','','bg-slider-01','','','2020-10-05 06:50:41','2020-10-05 06:50:41','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/bg-slider-01.jpg',0,'attachment','image/jpeg',0),(5373,1,'2020-10-05 08:00:09','2020-10-05 08:00:09','','bg-slider-02','','inherit','open','closed','','bg-slider-02','','','2020-10-05 08:00:09','2020-10-05 08:00:09','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/bg-slider-02.jpg',0,'attachment','image/jpeg',0),(5374,1,'2020-10-05 08:01:33','2020-10-05 08:01:33','','bg-slider-03','','inherit','open','closed','','bg-slider-03','','','2020-10-05 08:01:33','2020-10-05 08:01:33','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/bg-slider-03.jpg',0,'attachment','image/jpeg',0),(5377,1,'2020-10-05 09:04:08','2020-10-05 09:04:08','','bg-fancybox-01','','inherit','open','closed','','bg-fancybox-01','','','2020-10-05 09:04:08','2020-10-05 09:04:08','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/bg-fancybox-01.jpg',0,'attachment','image/jpeg',0),(5389,1,'2020-10-07 07:09:17','2020-10-07 07:09:17','','banner-01','','inherit','open','closed','','banner-01-2','','','2020-10-07 07:09:17','2020-10-07 07:09:17','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/banner-01.jpg',0,'attachment','image/jpeg',0),(5398,1,'2020-10-07 09:37:08','2020-10-07 09:37:08','','bg-section-01_02','','inherit','open','closed','','bg-section-01_02','','','2020-10-07 09:37:08','2020-10-07 09:37:08','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/bg-section-01_02.jpg',0,'attachment','image/jpeg',0),(5413,1,'2020-10-08 07:46:24','2020-10-08 07:46:24','','bg-section-02','','inherit','open','closed','','bg-section-02-2','','','2020-10-08 07:46:24','2020-10-08 07:46:24','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/bg-section-02.jpg',0,'attachment','image/jpeg',0),(5440,1,'2020-10-09 03:52:53','2020-10-09 03:52:53','','women-01','','inherit','open','closed','','women-01','','','2020-10-09 03:52:53','2020-10-09 03:52:53','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png',0,'attachment','image/png',0),(5454,1,'2020-10-09 07:16:49','2020-10-09 07:16:49','','flag-01','','inherit','open','closed','','flag-01','','','2020-10-09 07:16:49','2020-10-09 07:16:49','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png',0,'attachment','image/png',0),(5455,1,'2020-10-09 07:16:51','2020-10-09 07:16:51','','flag-02','','inherit','open','closed','','flag-02','','','2020-10-09 07:16:51','2020-10-09 07:16:51','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png',0,'attachment','image/png',0),(5456,1,'2020-10-09 07:16:52','2020-10-09 07:16:52','','flag-03','','inherit','open','closed','','flag-03','','','2020-10-09 07:16:52','2020-10-09 07:16:52','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png',0,'attachment','image/png',0),(5457,1,'2020-10-09 07:16:54','2020-10-09 07:16:54','','flag-04','','inherit','open','closed','','flag-04','','','2020-10-09 07:16:54','2020-10-09 07:16:54','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png',0,'attachment','image/png',0),(5458,1,'2020-10-09 07:16:55','2020-10-09 07:16:55','','flag-05','','inherit','open','closed','','flag-05','','','2020-10-09 07:16:55','2020-10-09 07:16:55','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png',0,'attachment','image/png',0),(5460,1,'2020-10-09 07:18:51','2020-10-09 07:18:51','','section-map','','inherit','open','closed','','section-map','','','2020-10-09 07:18:51','2020-10-09 07:18:51','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png',0,'attachment','image/png',0),(5478,1,'2020-10-10 02:04:11','2020-10-10 02:04:11','','bg-section-03','','inherit','open','closed','','bg-section-03-2','','','2020-10-10 02:04:11','2020-10-10 02:04:11','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/bg-section-03.jpg',0,'attachment','image/jpeg',0),(5489,1,'2020-10-10 06:28:17','2020-10-10 06:28:17','','bg-section-04','','inherit','open','closed','','bg-section-04-2','','','2020-10-10 06:28:17','2020-10-10 06:28:17','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/bg-section-04.jpg',0,'attachment','image/jpeg',0),(5514,1,'2020-10-12 15:18:20','2020-10-12 15:18:20','','ud-testimonial-01','','inherit','open','closed','','ud-testimonial-01','','','2020-10-12 15:18:20','2020-10-12 15:18:20','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-01.jpg',0,'attachment','image/jpeg',0),(5515,1,'2020-10-12 15:18:22','2020-10-12 15:18:22','','ud-testimonial-02','','inherit','open','closed','','ud-testimonial-02','','','2020-10-12 15:18:22','2020-10-12 15:18:22','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg',0,'attachment','image/jpeg',0),(5516,1,'2020-10-12 15:18:23','2020-10-12 15:18:23','','ud-testimonial-03','','inherit','open','closed','','ud-testimonial-03','','','2020-10-12 15:18:23','2020-10-12 15:18:23','',0,'https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg',0,'attachment','image/jpeg',0),(5534,1,'2020-10-12 16:14:21','2020-10-12 16:14:21','','ud-blog1','','inherit','open','closed','','ud-blog1','','','2020-10-12 16:14:21','2020-10-12 16:14:21','',0,'https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg',0,'attachment','image/jpeg',0),(1214,1,'2019-11-25 12:06:00','2019-11-25 12:06:00','<h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>','Pricing - Month','','publish','closed','closed','','pricing-month','','','2019-11-25 12:06:00','2019-11-25 12:06:00','',0,'https://demo.casethemes.net/consultio-immigration/?elementor_library=pricing-month',0,'elementor_library','',0),(1217,1,'2019-11-25 12:06:13','2019-11-25 12:06:13','<h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ year\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ year\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ year\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>','Pricing - Year','','publish','closed','closed','','pricing-year','','','2019-11-25 12:06:13','2019-11-25 12:06:13','',0,'https://demo.casethemes.net/consultio-immigration/?elementor_library=pricing-year',0,'elementor_library','',0),(2331,1,'2019-12-12 09:16:28','2019-12-12 09:16:28','Forging relationships between multi-national corporations, governments and global NGOs begins with connections between people. 		\n                                            Corporate\n                70%\n                                            Commercial\n                98%\n                                            Business\n                80%','Tab 01','','publish','closed','closed','','tab-01','','','2019-12-12 09:16:28','2019-12-12 09:16:28','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=elementor_library&amp;p=2331',0,'elementor_library','',0),(2439,1,'2019-12-13 08:25:31','2019-12-13 08:25:31','Case Studies\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-11\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-11-ohk30az46cr12khwk7piw16t7i0j85bx17lzlj4nd2.jpg\" alt=\"theme-11\" />\n<h3>Data Analytics</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Developing a program to be alleviate poverty.','','publish','closed','closed','','developing-a-program-to-be-alleviate-poverty','','','2019-12-13 08:25:31','2019-12-13 08:25:31','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=case-study&amp;p=2439',0,'case-study','',0),(2440,1,'2019-12-13 08:25:50','2019-12-13 08:25:50','Case Studies\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-07-ohk318tb0e1coj4r2mc3dsnelddqx9295v3gvhqh52.jpg\" alt=\"theme-07\" />\n<h3>Data Analytics</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','On behalf of World Bank, an Advocom Group.','','publish','closed','closed','','on-behalf-of-world-bank-an-advocom-group-2','','','2019-12-13 08:25:50','2019-12-13 08:25:50','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=case-study&amp;p=2440',0,'case-study','',0),(2441,1,'2019-12-13 08:26:17','2019-12-13 08:26:17','Case Studies\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-08\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-08-ohk3069x86klgioqbnoe1kdi8knp5nt9ckck75bm86.jpg\" alt=\"theme-08\" />\n<h3>Data Analytics</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Supporting a unique global public-private partnership.','','publish','closed','closed','','supporting-a-unique-global-public-private-partnership','','','2019-12-13 08:26:17','2019-12-13 08:26:17','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=case-study&amp;p=2441',0,'case-study','',0),(2442,1,'2019-12-13 08:26:38','2019-12-13 08:26:38','Case Studies\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-12\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-12-ohk31sjwzwsdgcc2vcv9c5o32gogew8m8ksnyax7ie.jpg\" alt=\"theme-12\" />\n<h3>Data Analytics</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','International business development','','publish','closed','closed','','international-business-development','','','2019-12-13 08:26:38','2019-12-13 08:26:38','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=case-study&amp;p=2442',0,'case-study','',0),(3872,1,'2020-02-09 02:46:59','2020-02-09 02:46:59','<h3>New Business</h3>\n    1-4 Employees\n    $499\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $599\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $699\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>','Pricing - Year Style 2','','publish','closed','closed','','pricing-year-style-2','','','2020-02-09 02:46:59','2020-02-09 02:46:59','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=elementor_library&amp;p=3872',0,'elementor_library','',0),(3876,1,'2020-02-09 02:45:49','2020-02-09 02:45:49','<h3>New Business</h3>\n    1-4 Employees\n    $99\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    Best choice\n    <h3>Small Business</h3>\n    5-19 Employees\n    $199\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Growing Business</h3>\n    20-39 Employees\n    $299\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>    \n            <a href=\"#\">Try now</a>\n    <h3>Large Business</h3>\n    Unlimited Employees\n    $399\n        Plus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>    \n            <a href=\"#\">Try now</a>','Pricing - Month Style 2','','publish','closed','closed','','pricing-month-style-2','','','2020-02-09 02:45:49','2020-02-09 02:45:49','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=elementor_library&amp;p=3876',0,'elementor_library','',0),(4509,1,'2020-04-22 03:50:13','2020-04-22 03:50:13','.ct-hidden-sidebar section.widget.logo-hidden-sidebar img {\n	max-height: 50px;\n}','csuti','','publish','closed','closed','','csuti','','','2020-04-22 03:50:13','2020-04-22 03:50:13','',0,'https://demo.casethemes.net/consultio-immigration/csuti/',0,'custom_css','',0),(4540,1,'2020-04-22 04:21:18','2020-04-22 04:21:18','','Default Kit','','publish','closed','closed','','default-kit','','','2020-04-22 04:21:18','2020-04-22 04:21:18','',0,'https://demo.casethemes.net/consultio-immigration/?elementor_library=default-kit',0,'elementor_library','',0),(4587,1,'2020-04-22 08:21:25','2020-04-22 08:21:25','<h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/\">\n                                                                                                            Finance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-finance2/\">\n                                                                                                            Finance 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-rtl/\">\n                                                                                                            Finance RTL                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business/\">\n                                                                                                            Business 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business2/\">\n                                                                                                            Business 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business3/\">\n                                                                                                            Business 3                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate1\">\n                                                                                                            Corporate 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate2\">\n                                                                                                            Corporate 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate3\">\n                                                                                                            Corporate 3                                    </a></li>\n                        <li><a href=\"https://demo.casethemes.net/consultio-immigration/\">\n                                                                                                            Immigration                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-law/\">\n                                                                                                            Law                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-startup/\">\n                                                                                                            Startup                                    </a></li>\n            </ul>\n	    <h3>\n                        Multi Pages                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio-agency/\">\n                                                                                                            Agency                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-hr/\">\n                                                                                                            Human Resource                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-coach/\">\n                                                                                                            Life Coach                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-marketing/\">\n                                                                                                            Marketing                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-medical/\">\n                                                                                                            Medical                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-it/\">\n                                                                                                            IT Solution                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-tax/\">\n                                                                                                            Tax Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-insurance/\">\n                                                                                                            Insurance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corona/\">\n                                                                                                            Corona                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-consulting/\">\n                                                                                                            Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-software/\">\n                                                                                                            Software                                    </a></li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/home-onepage\">\n                                                                                                            Finance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-finance2/home-onepage\">\n                                                                                                            Finance 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-rtl/home-onepage\">\n                                                                                                            Finance RTL                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business/home-onepage\">\n                                                                                                            Business 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business2/home-onepage\">\n                                                                                                            Business 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-business3/home-onepage\">\n                                                                                                            Business 3                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate1/home-onepage\">\n                                                                                                            Corporate 1                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate2/home-onepage\">\n                                                                                                            Corporate 2                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corporate3/home-onepage\">\n                                                                                                            Corporate 3                                    </a></li>\n                        <li><a href=\"https://demo.casethemes.net/consultio-immigration/home-onepage\">\n                                                                                                            Immigration                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-law/home-onepage\">\n                                                                                                            Law                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-startup/home-onepage\">\n                                                                                                            Startup                                    </a></li>\n            </ul>\n	    <h3>\n                        One Page                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio-agency/home-onepage\">\n                                                                                                            Agency                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-hr/home-onepage\">\n                                                                                                            Human Resource                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-coach/home-onepage\">\n                                                                                                            Life Coach                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-marketing/home-onepage\">\n                                                                                                            Marketing                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-medical/home-onepage\">\n                                                                                                            Medical                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-it/home-onepage\">\n                                                                                                            IT Solution                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-tax/home-onepage\">\n                                                                                                            Tax Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-insurance/home-onepage\">\n                                                                                                            Insurance                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-corona/home-onepage\">\n                                                                                                            Corona                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-consulting/home-onepage\">\n                                                                                                            Consulting                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio-software/home-onepage\">\n                                                                                                            Software                                    </a></li>\n            </ul>','Demos','','publish','closed','closed','','demos','','','2020-04-22 08:21:25','2020-04-22 08:21:25','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=ct-mega-menu&amp;p=4587',0,'ct-mega-menu','',0),(5137,1,'2020-07-25 08:07:12','2020-07-25 08:07:12','<h3>\n                        Interactive Elements                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/testimonials-2/\">\n                                                                                                            Testimonials                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/blog-slider/\">\n                                                                                                            Blog Slider                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/elements-portfolio-carousel/\">\n                                                                                                            Portfolio Carousel                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/service-carousel/\">\n                                                                                                            Service Carousel                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/clients/\">\n                                                                                                            Clients                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/history/\">\n                                                                                                            History                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/video-button/\">\n                                                                                                            Video Button                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/columns/\">\n                                                                                                            Columns                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/row-background/\">\n                                                                                                            Row background                                    </a></li>\n            </ul>\n	    <h3>\n                        Standard Elements                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/team-variations/\">\n                                                                                                            Team Variations                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/buttons/\">\n                                                                                                            Buttons                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/tabs-tours/\">\n                                                                                                            Tabs & Tours                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/accordions-toggles/\">\n                                                                                                            Accordions & Toggles                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/google-maps/\">\n                                                                                                            Google Maps                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/contact-forms-7/\">\n                                                                                                            Contact Forms 7                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/dividers/\">\n                                                                                                            Dividers                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/pricing-tables/\">\n                                                                                                            Pricing Tables                                    </a></li>\n            </ul>\n	    <h3>\n                        Infographics                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/counters/\">\n                                                                                                            Counters                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/progress-bars/\">\n                                                                                                            Progress Bars                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/icon-with-text/\">\n                                                                                                            Icon With Text                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/icon-grid/\">\n                                                                                                            Icon Grid                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/image-box-fancy/\">\n                                                                                                            Image Box Fancy                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/cover-boxes/\">\n                                                                                                            Cover Boxes                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/newsletters/\">\n                                                                                                            Newsletters                                    </a></li>\n            </ul>\n	    <h3>\n                        Typography                    \n            </h3>\n			    <ul>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/custom-fonts/\">\n                                                                                                            Custom Fonts                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/highlights/\">\n                                                                                                            Highlights                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/blockquote/\">\n                                                                                                            Blockquote                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/dropcaps/\">\n                                                                                                            Dropcaps                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/message-box/\">\n                                                                                                            Message Box                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/lists/\">\n                                                                                                            Lists                                    </a></li>\n                        <li><a href=\"http://demo.casethemes.net/consultio/elements/titles/\">\n                                                                                                            Titles                                    </a></li>\n            </ul>','Elements','','publish','closed','closed','','elements','','','2020-07-25 08:07:12','2020-07-25 08:07:12','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=ct-mega-menu&amp;p=5137',0,'ct-mega-menu','',0),(5333,1,'2020-08-14 16:06:54','2020-08-14 16:06:54','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n			Services\n	    <h3>\n                        We offer many services to progress!                    \n            </h3>\n		As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting or lipsum.		\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/service-img-icon1.png\" alt=\"\" loading=\"lazy\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/financial-limit/\">Financial Limit</a></h3>\n                                    Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/financial-limit/\">\n                                            Read more                                        \n                                    </a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/service-img-icon2.png\" alt=\"\" loading=\"lazy\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/financial-growth/\">Financial Growth</a></h3>\n                                    Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/financial-growth/\">\n                                            Read more                                        \n                                    </a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/service-img-icon3.png\" alt=\"\" loading=\"lazy\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/tax-management/\">Tax Management</a></h3>\n                                    Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/tax-management/\">\n                                            Read more                                        \n                                    </a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/service-img-icon4.png\" alt=\"\" loading=\"lazy\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/customer-experience/\">Customer Experience</a></h3>\n                                    Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/customer-experience/\">\n                                            Read more                                        \n                                    </a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/service-img-icon5.png\" alt=\"\" loading=\"lazy\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/private-equity/\">Private Equity</a></h3>\n                                    Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/private-equity/\">\n                                            Read more                                        \n                                    </a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/service-img-icon6.png\" alt=\"\" loading=\"lazy\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/automotive-mobility/\">Automotive &#038; Mobility</a></h3>\n                                    Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/automotive-mobility/\">\n                                            Read more                                        \n                                    </a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/service-img-icon7.png\" alt=\"\" loading=\"lazy\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/financial-services/\">Financial Services</a></h3>\n                                    Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/financial-services/\">\n                                            Read more                                        \n                                    </a>\n                                <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/service-img-icon8.png\" alt=\"\" loading=\"lazy\" />                            \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/insurance-services/\">Insurance Services</a></h3>\n                                    Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/insurance-services/\">\n                                            Read more                                        \n                                    </a>\n                        <img width=\"519\" height=\"598\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/man1.png\" alt=\"\" loading=\"lazy\" />            		\n			Fan facts\n	    <h3>\n                        I have a many funfacts for the best works.                    \n            </h3>\n		<p>Include a few fun facts about your personal life, like this one. I know all the words to the opening song on Talent Roundup Day. We work with the world’s leading forest products, paper .</p>		\n                                1\n                +\n                            Satisfied<br/> clients\n                                1\n                %\n                            Success of <br/> works\n                                1\n                +\n                            Expert team<br/> member\n                                <a href=\"#\">\n                                    <img width=\"110\" height=\"64\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"110\" height=\"64\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img3.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"82\" height=\"80\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"82\" height=\"80\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img2.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"89\" height=\"85\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"89\" height=\"85\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img4.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"90\" height=\"90\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"90\" height=\"90\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img1.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"137\" height=\"72\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"137\" height=\"72\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/06/client-img5.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n			Feature\n	    <h3>\n                        We offer many services to progress!                    \n            </h3>\n		As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting or lipsum.		\n            <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/feature-icon1.png\" alt=\"\" loading=\"lazy\" />        \n        <h3>\n            Clean Setup        </h3>\n        Lorem Ipsum is simply dummy text of the printing and its typeseting industry.\n            <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/feature-icon2.png\" alt=\"\" loading=\"lazy\" />        \n        <h3>\n            Financial Maintance        </h3>\n        Lorem Ipsum is simply dummy text of the printing and its typeseting industry.\n            <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/feature-icon3.png\" alt=\"\" loading=\"lazy\" />        \n        <h3>\n            Tax Management        </h3>\n        Lorem Ipsum is simply dummy text of the printing and its typeseting industry.\n            <img width=\"150\" height=\"150\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/feature-icon4.png\" alt=\"\" loading=\"lazy\" />        \n        <h3>\n            Customer Experience        </h3>\n        Lorem Ipsum is simply dummy text of the printing and its typeseting industry.\n			Testimonials\n	    <h3>\n                        We are very glad to get client review.                    \n            </h3>\n		As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting.  or lipsum as it is sometimes known, is dummy text used in laying out print, grap or web designs.		\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-01-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-01\" title=\"testimonial-01\" />                                        \n                                    As a app web crawler expert, I help to do organizations adjust to the expanding to the significace of internet promoting. placeholder text.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    As a app web crawler expert, I help to do organizations adjust to the expanding to the significace of internet promoting. placeholder text.                                \n                                    <h3>Alan Smith, </h3>\n                                    Asistant Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    As a app web crawler expert, I help to do organizations adjust to the expanding to the significace of internet promoting. placeholder text.                                \n                                    <h3>Jewel Smith, </h3>\n                                    Web Design\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/ud-testimonial-01.jpg\" width=\"90\" height=\"90\" alt=\"ud-testimonial-01\" title=\"ud-testimonial-01\" />                                        \n                                    As a app web crawler expert, I help to do organizations adjust to the expanding to the significace of internet promoting. placeholder text.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n			Team\n	    <h3>\n                        Our expert team will help you.                    \n            </h3>\n		As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting or lipsum.		\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/u-team-01.jpg\" width=\"270\" height=\"280\" alt=\"u-team-01\" title=\"u-team-01\" /></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/u-team-01.jpg);\"></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Laito French</a>\n                                    </h3>\n                                    Founder & CEO\n                                        <ul>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                    </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/u-team-02.jpg\" width=\"270\" height=\"280\" alt=\"u-team-02\" title=\"u-team-02\" /></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/u-team-02.jpg);\"></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Adam Ivan</a>\n                                    </h3>\n                                    Chef Advisor\n                                        <ul>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"\"></a></li>\n                                                                                    </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/u-team-03.jpg\" width=\"270\" height=\"280\" alt=\"u-team-03\" title=\"u-team-03\" /></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/u-team-03.jpg);\"></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Rebecca Leo</a>\n                                    </h3>\n                                    Web Designer\n                                        <ul>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"\"></a></li>\n                                                                                    </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team3-270x280.jpg\" width=\"270\" height=\"280\" alt=\"h6-team3\" title=\"h6-team3\" /></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team3.jpg);\"></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Donald John</a>\n                                    </h3>\n                                    Executive Manager\n                                        <ul>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"\"></a></li>\n                                                                                    </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/u-team-04.jpg\" width=\"270\" height=\"280\" alt=\"u-team-04\" title=\"u-team-04\" /></a>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/08/u-team-04.jpg);\"></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Iven Rocky</a>\n                                    </h3>\n                                    Web Developer\n                                        <ul>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"#\"></a></li>\n                                                                                            <li><a href=\"\"></a></li>\n                                                                                    </ul>\n			Get in touch\n	    <h3>\n                        Get in touch for any kind of help and informations                    \n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n        <h3>\n            Our head office address:        </h3>\n        3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail us for information        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n<form action=\"/ctthemes/csuti-agency/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>            \n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>		\n			Blog\n	    <h3>\n                        Something from our latest blog                    \n            </h3>\n		As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting or lipsum.		\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/10-secrets-about-10-simple-steps-for-blogs/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/u-blog1-370x270.jpg\" width=\"370\" height=\"270\" alt=\"u-blog1\" title=\"u-blog1\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creavive-agency/\" rel=\"tag\">Creavive Agency</a>                            \n                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/10-secrets-about-10-simple-steps-for-blogs/\">10 Secrets About 10 Simple Steps for Blogs.</a></h3>\n                                                    <ul>\n                                                                    <li>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01-150x150.jpg\" width=\"90\" height=\"90\" alt=\"Rinnah\" />                                            <label>Posted by</label>\n                                            Rinnah    \n                                        </a>\n                                    </li>\n                                                                                                    <li>\n                                        5 Nov, 2019                                    </li>\n                                                            </ul>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-370x270.jpg\" width=\"370\" height=\"270\" alt=\"theme-01\" title=\"theme-01\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                                    <ul>\n                                                                    <li>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01-150x150.jpg\" width=\"90\" height=\"90\" alt=\"Rinnah\" />                                            <label>Posted by</label>\n                                            Rinnah    \n                                        </a>\n                                    </li>\n                                                                                                    <li>\n                                        5 Nov, 2019                                    </li>\n                                                            </ul>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/8-ways-best-practices-for-seo-can-increase/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/u-blog2-370x270.jpg\" width=\"370\" height=\"270\" alt=\"u-blog2\" title=\"u-blog2\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creavive-agency/\" rel=\"tag\">Creavive Agency</a>                            \n                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/8-ways-best-practices-for-seo-can-increase/\">8 Ways Best Practices for SEO Can Increase.</a></h3>\n                                                    <ul>\n                                                                    <li>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01-150x150.jpg\" width=\"90\" height=\"90\" alt=\"Rinnah\" />                                            <label>Posted by</label>\n                                            Rinnah    \n                                        </a>\n                                    </li>\n                                                                                                    <li>\n                                        5 Nov, 2019                                    </li>\n                                                            </ul>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13-370x270.jpg\" width=\"370\" height=\"270\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                                    <ul>\n                                                                    <li>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01-150x150.jpg\" width=\"90\" height=\"90\" alt=\"Rinnah\" />                                            <label>Posted by</label>\n                                            Rinnah    \n                                        </a>\n                                    </li>\n                                                                                                    <li>\n                                        5 Nov, 2019                                    </li>\n                                                            </ul>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-370x270.jpg\" width=\"370\" height=\"270\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business-strategy/\" rel=\"tag\">Business &amp; Strategy</a>                            \n                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                                    <ul>\n                                                                    <li>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01-150x150.jpg\" width=\"90\" height=\"90\" alt=\"Rinnah\" />                                            <label>Posted by</label>\n                                            Rinnah    \n                                        </a>\n                                    </li>\n                                                                                                    <li>\n                                        5 Nov, 2019                                    </li>\n                                                            </ul>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-370x270.jpg\" width=\"370\" height=\"270\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/human-resorce/\" rel=\"tag\">Human Resorce</a>                            \n                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                                    <ul>\n                                                                    <li>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01-150x150.jpg\" width=\"90\" height=\"90\" alt=\"Rinnah\" />                                            <label>Posted by</label>\n                                            Rinnah    \n                                        </a>\n                                    </li>\n                                                                                                    <li>\n                                        4 Nov, 2018                                    </li>\n                                                            </ul>\n		   			<h3>Like our service? Subscribe us</h3>\n		   			As a app web crawler expert, I help organizations adjust to the expanding significance of internet promoting.\n				<form action=\"https://demo.casethemes.net/consultio-immigration/?na=s\" method=\"post\" onsubmit=\"return newsletter_check(this)\">\n			    	<input type=\"hidden\" name=\"nr\" value=\"widget-minimal\"/>\n			    		<label>Your mail address</label>\n			    		<input type=\"email\" required name=\"ne\" value=\"\" placeholder=\"Your mail address\">\n			    		<input type=\"submit\" value=\"Subscrib now\">\n			    </form>','Home','','publish','closed','closed','','home','','','2020-08-14 16:06:54','2020-08-14 16:06:54','',0,'https://demo.casethemes.net/consultio-immigration/?elementor_library=home',0,'elementor_library','',0),(5543,1,'2020-10-12 16:58:46','2020-10-12 16:58:46','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning-2/\">Business Planning</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">Immigrant Visas</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">Tourist Visa</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">Business Visa</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/insurance-services/\">Insurance Services</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">Local Visa</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n            </h3>\n			    <ul>\n                    <li>\n                       3111 West Allegheny Avenue\nPennsylvania 19132                    \n                           </li>\n                    <li>\n                       1-982-782-5297<br />\n1-982-125-6378                    \n                           </li>\n                    <li>\n                       support@consultio.com                    \n                           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n            </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>','Single Services','','publish','closed','closed','','single-services','','','2020-10-12 16:58:46','2020-10-12 16:58:46','',0,'https://demo.casethemes.net/consultio-immigration/?elementor_library=single-services',0,'elementor_library','',0),(20,1,'2019-10-30 03:38:33','2019-10-30 03:38:33','<h3 data-wow-delay=\"ms\">\n            About:\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p>		\n	    <h3 data-wow-delay=\"ms\">\n            Navigation:\n            </h3>\n        <ul id=\"menu-main-updated-1\"><li id=\"menu-item-5784\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-5785\"><a href=\"#\">Where to Buy</a></li>\n<li id=\"menu-item-5786\"><a href=\"#\">About The Book</a></li>\n<li id=\"menu-item-5787\"><a href=\"#\">About The Author</a></li>\n<li id=\"menu-item-5788\"><a href=\"#\">Contact</a></li>\n</ul>    \n	    <h3 data-wow-delay=\"ms\">\n            Contact\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       info@dealersofthemacabre.com                    \n                           </li>\n            </ul>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>DealersoftheMacabre.com © All rights reserved.</p>','Footer v.1','','publish','closed','closed','','footer-1','','','2021-04-03 21:47:14','2021-04-03 21:47:14','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=footer&#038;p=20',0,'footer','',0),(5797,1,'2021-04-03 21:46:55','2021-04-03 21:46:55','<h3 data-wow-delay=\"ms\">\n            About:\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p>		\n	    <h3 data-wow-delay=\"ms\">\n            Navigation:\n            </h3>\n        <ul id=\"menu-main-updated-1\"><li id=\"menu-item-5784\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-5785\"><a href=\"#\">Where to Buy</a></li>\n<li id=\"menu-item-5786\"><a href=\"#\">About The Book</a></li>\n<li id=\"menu-item-5787\"><a href=\"#\">About The Author</a></li>\n<li id=\"menu-item-5788\"><a href=\"#\">Contact</a></li>\n</ul>    \n	    <h3 data-wow-delay=\"ms\">\n            Contact\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       info@dealersofthemacabre.com                    \n                           </li>\n            </ul>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>DealersoftheMacabre.com © All rights reserved.</p>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2021-04-03 21:46:55','2021-04-03 21:46:55','',20,'https://dm117.dev34.info/?p=5797',0,'revision','',0),(5796,1,'2021-04-03 21:46:47','2021-04-03 21:46:47','<h3 data-wow-delay=\"ms\">\n            About:\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p>		\n	    <h3 data-wow-delay=\"ms\">\n            Navigation:\n            </h3>\n        <ul id=\"menu-main-updated-1\"><li id=\"menu-item-5784\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-5785\"><a href=\"#\">Where to Buy</a></li>\n<li id=\"menu-item-5786\"><a href=\"#\">About The Book</a></li>\n<li id=\"menu-item-5787\"><a href=\"#\">About The Author</a></li>\n<li id=\"menu-item-5788\"><a href=\"#\">Contact</a></li>\n</ul>    \n	    <h3 data-wow-delay=\"ms\">\n            Contact\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       info@dealersofthemacabre.com                    \n                           </li>\n            </ul>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>DealersoftheMacabre.com © All rights reserved.</p>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2021-04-03 21:46:47','2021-04-03 21:46:47','',20,'https://dm117.dev34.info/?p=5796',0,'revision','',0),(5798,1,'2021-04-03 21:47:14','2021-04-03 21:47:14','<h3 data-wow-delay=\"ms\">\n            About:\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p>		\n	    <h3 data-wow-delay=\"ms\">\n            Navigation:\n            </h3>\n        <ul id=\"menu-main-updated-1\"><li id=\"menu-item-5784\"><a href=\"#\">Home</a></li>\n<li id=\"menu-item-5785\"><a href=\"#\">Where to Buy</a></li>\n<li id=\"menu-item-5786\"><a href=\"#\">About The Book</a></li>\n<li id=\"menu-item-5787\"><a href=\"#\">About The Author</a></li>\n<li id=\"menu-item-5788\"><a href=\"#\">Contact</a></li>\n</ul>    \n	    <h3 data-wow-delay=\"ms\">\n            Contact\n            </h3>\n			    <ul id=\"ct_contact_info-722cda7e\">\n                    <li>\n                       info@dealersofthemacabre.com                    \n                           </li>\n            </ul>\n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n		<p>DealersoftheMacabre.com © All rights reserved.</p>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2021-04-03 21:47:14','2021-04-03 21:47:14','',20,'https://dm117.dev34.info/?p=5798',0,'revision','',0),(5799,1,'2021-04-03 21:50:09','2021-04-03 21:50:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:50:09','2021-04-03 21:50:09','',9,'https://dm117.dev34.info/?p=5799',0,'revision','',0),(5544,1,'2021-04-03 20:20:56','2021-04-03 20:20:56','','Pages','','publish','closed','closed','','pages','','','2021-04-03 20:20:56','2021-04-03 20:20:56','',0,'https://dm117.dev34.info/2021/04/03/pages/',7,'nav_menu_item','',0),(4680,1,'2020-06-11 14:41:57','2020-06-11 14:41:57','<div class=\"field-group\">\n	<div class=\"field-input\">\n 		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your mail address\" required />\n 	</div>\n 	<div class=\"field-input\">\n		<input type=\"submit\" value=\"Subscribe\" />\n	</div>\n</div>','Form 1','','publish','closed','closed','','form-1','','','2020-06-11 14:41:57','2020-06-11 14:41:57','',0,'https://demo.casethemes.net/consultio-immigration/mc4wp-form/form-1/',0,'mc4wp-form','',0),(5846,1,'2021-05-09 00:11:36','2021-05-09 00:11:36','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:11:36','2021-05-09 00:11:36','',3493,'https://dm117.dev34.info/?p=5846',0,'revision','',0),(5848,1,'2021-05-09 00:12:27','2021-05-09 00:12:27','','Screen Shot 2021-05-08 at 5.11.56 PM','','inherit','open','closed','','screen-shot-2021-05-08-at-5-11-56-pm','','','2021-05-09 00:12:27','2021-05-09 00:12:27','',3493,'https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png',0,'attachment','image/png',0),(5849,1,'2021-05-09 00:12:42','2021-05-09 00:12:42','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:12:42','2021-05-09 00:12:42','',3493,'https://dm117.dev34.info/?p=5849',0,'revision','',0),(5847,1,'2021-05-09 00:11:36','2021-05-09 00:11:36','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:11:36','2021-05-09 00:11:36','',3493,'https://dm117.dev34.info/?p=5847',0,'revision','',0),(5845,1,'2021-05-09 00:11:36','2021-05-09 00:11:36','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:11:36','2021-05-09 00:11:36','',3493,'https://dm117.dev34.info/?p=5845',0,'revision','',0),(5843,1,'2021-05-09 00:07:45','2021-05-09 00:07:45','','Screen Shot 2021-05-08 at 5.07.22 PM','','inherit','open','closed','','screen-shot-2021-05-08-at-5-07-22-pm','','','2021-05-09 00:07:45','2021-05-09 00:07:45','',3493,'https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png',0,'attachment','image/png',0),(5841,1,'2021-05-09 00:03:12','2021-05-09 00:03:12','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:03:12','2021-05-09 00:03:12','',3493,'https://dm117.dev34.info/?p=5841',0,'revision','',0),(5851,1,'2021-05-09 00:12:43','2021-05-09 00:12:43','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:12:43','2021-05-09 00:12:43','',3493,'https://dm117.dev34.info/?p=5851',0,'revision','',0),(5842,1,'2021-05-09 00:03:13','2021-05-09 00:03:13','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:03:13','2021-05-09 00:03:13','',3493,'https://dm117.dev34.info/?p=5842',0,'revision','',0),(5838,1,'2021-05-09 00:01:15','2021-05-09 00:01:15','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:01:15','2021-05-09 00:01:15','',3493,'https://dm117.dev34.info/?p=5838',0,'revision','',0),(5839,1,'2021-05-09 00:03:08','2021-05-09 00:03:08','','Screen Shot 2021-05-08 at 5.02.46 PM','','inherit','open','closed','','screen-shot-2021-05-08-at-5-02-46-pm','','','2021-05-09 00:03:08','2021-05-09 00:03:08','',3493,'https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png',0,'attachment','image/png',0),(5840,1,'2021-05-09 00:03:12','2021-05-09 00:03:12','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:03:12','2021-05-09 00:03:12','',3493,'https://dm117.dev34.info/?p=5840',0,'revision','',0),(5836,1,'2021-05-09 00:01:15','2021-05-09 00:01:15','','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:01:15','2021-05-09 00:01:15','',3493,'https://dm117.dev34.info/?p=5836',0,'revision','',0),(5837,1,'2021-05-09 00:01:15','2021-05-09 00:01:15','','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:01:15','2021-05-09 00:01:15','',3493,'https://dm117.dev34.info/?p=5837',0,'revision','',0),(5867,1,'2021-05-09 00:18:23','2021-05-09 00:18:23','Available Now!\n<h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!</h3>\n<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" width=\"640\" height=\"214\">								</a>\n<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" width=\"640\" height=\"253\">								</a>\n<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" width=\"640\" height=\"213\">								</a>\n<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"240\">								</a>\n<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" width=\"580\" height=\"202\">								</a>\n<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" width=\"640\" height=\"246\">								</a>\n<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" width=\"524\" height=\"118\">								</a>\n<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" width=\"594\" height=\"300\">								</a>','Buy The Book','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:18:23','2021-05-09 00:18:23','',3493,'https://dm117.dev34.info/?p=5867',0,'revision','',0),(5831,1,'2021-05-08 23:58:51','2021-05-08 23:58:51','About us                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re a global stakeholder relations and consultancy.\n            </h3>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-08 23:58:51','2021-05-08 23:58:51','',3493,'https://dm117.dev34.info/?p=5831',0,'revision','',0),(5832,1,'2021-05-08 23:58:51','2021-05-08 23:58:51','About us                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re a global stakeholder relations and consultancy.\n            </h3>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-08 23:58:51','2021-05-08 23:58:51','',3493,'https://dm117.dev34.info/?p=5832',0,'revision','',0),(5808,1,'2021-05-06 23:35:32','2021-05-06 23:35:32','<h3>\n            Head office address:        </h3>\n        3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail for information:        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n										<img width=\"601\" height=\"706\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/contact-about1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/contact-about1.png 601w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/contact-about1-255x300.png 255w\" sizes=\"(max-width: 601px) 100vw, 601px\" />											\n	    <h3>\n                        Make a free consultation with our expert team to solve your prolems.                    \n            </h3>\n		For any inquiries relating to my  Retail and Leadership Programs*		\n<form action=\"/ctthemes/csuti-immigration/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail*\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\" />\n<select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Subject\">Subject</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Consult today</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-05-06 23:35:32','2021-05-06 23:35:32','',24,'https://dm117.dev34.info/?p=5808',0,'revision','',0),(5811,1,'2021-05-08 23:52:27','2021-05-08 23:52:27','About us\n	    <h3>\n                        Consulting is a law firm specialising in corporate finance work                    \n    </h3>\n		Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.		\n        80%\n    <h3>Work<br/> Development</h3>\n        90%\n    <h3>Plan<br/> Fulfilled</h3>\n        50%\n    <h3>UI/UX<br/> Desigining</h3>\n										<img width=\"535\" height=\"519\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/h4-about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/h4-about1.png 535w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/h4-about1-300x291.png 300w\" sizes=\"(max-width: 535px) 100vw, 535px\" />											\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Services\n	    <h3>\n                        We deals with many services to take extra care of your problem solutions.                    \n    </h3>\n		Business services is a general term that describes work that supports a business but does not produce a tangible commodity. Information technology is important.		\n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n			Funfact\n	    <h3>\n                        Don’t misread here we have random &amp; interesting facts.                    \n    </h3>\n		Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\nto sell & consult.		\n                            <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n            1\n            +\n                    Team members\n            1\n            +\n                    Winning Awards\n            1\n            +\n                    Client’s Feedback\n            1\n            +\n                    Completed Works\n			Testimonial\n	    <h3>\n                        It’s always a joy to hear that the work we do, has positively reviews.                    \n    </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                        \n                                        <h3>    \n                                            Maria Silverii                                        </h3>\n                                        CEO of Blue Illusion\n                                I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Phillip Macintyre                                        </h3>\n                                        CEO of Blue Illusion\n                                Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\nthem.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-01.jpg\" width=\"100\" height=\"100\" alt=\"team-01\" title=\"team-01\" />                                        \n                                        <h3>    \n                                            Amy Harrison                                        </h3>\n                                        Contiki Holidays\n                                I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Maria Silverii                                        </h3>\n                                        CEO of Blue Illusion\n                                Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\nthem.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01-122x122.jpg\" width=\"122\" height=\"122\" alt=\"home-author-01\" title=\"home-author-01\" />                                        \n                                        <h3>    \n                                            Amy Harrison                                        </h3>\n                                        Contiki Holidays\n                                I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-02-122x122.jpg\" width=\"122\" height=\"122\" alt=\"home-author-02\" title=\"home-author-02\" />                                        \n                                        <h3>    \n                                            Phillip Macintyre                                        </h3>\n                                        CEO of Blue Illusion\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:52:27','2021-05-08 23:52:27','',3491,'https://dm117.dev34.info/?p=5811',0,'revision','',0),(5819,1,'2021-05-08 23:55:48','2021-05-08 23:55:48','About The Book                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n			<a href=\"https://dm117.dev34.info/about-the-book/\" role=\"button\">\n						Buy Your Copy\n					</a>\n										<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" />','About The Book','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:55:48','2021-05-08 23:55:48','',3491,'https://dm117.dev34.info/?p=5819',0,'revision','',0),(5820,1,'2021-05-08 23:55:48','2021-05-08 23:55:48','About The Book                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n			<a href=\"https://dm117.dev34.info/about-the-book/\" role=\"button\">\n						Buy Your Copy\n					</a>\n										<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" />','About The Book','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:55:48','2021-05-08 23:55:48','',3491,'https://dm117.dev34.info/?p=5820',0,'revision','',0),(5821,1,'2021-05-08 23:55:49','2021-05-08 23:55:49','About The Book                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n			<a href=\"https://dm117.dev34.info/about-the-book/\" role=\"button\">\n						Buy Your Copy\n					</a>\n										<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" />','About The Book','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:55:49','2021-05-08 23:55:49','',3491,'https://dm117.dev34.info/?p=5821',0,'revision','',0),(5822,1,'2021-05-08 23:57:48','2021-05-08 23:57:48','About us\n<h3>We’re a global stakeholder relations and consultancy.</h3>\nAt vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. We bring more than 24 years’ senior experience forging of\ncollaborations across government.\nPraesent feugiat sem.\nA wonderful serenity.\nPremium services for you.\nSet a link back to photo.\nCall to ask <a href=\"#\">any question</a> 540-325-1523\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap.png\" sizes=\"(max-width: 350px) 100vw, 350px\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" alt=\"\" width=\"350\" height=\"1\" />\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/signature-02.png\" alt=\"\" width=\"95\" height=\"85\" />\n<h3>Natalia Duke</h3>\n(Chairman and founder)\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/banner-01.png\" alt=\"\" width=\"510\" height=\"730\" />\n<h3>24 Years of Experience</h3>\nPricing\n<h3>We\'re ready to share our advice and experience.</h3>\nThe main difference between Statistic and Statistics is that the Statistic is a single measure of some attribute of a sample and Statistics is a study of the collection.\n<h3>Tax Consultancy</h3>\nThis is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n<h3>Audit &amp; assurance</h3>\nPeople are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n<h3>Value Added Tax</h3>\nWe are providing and dealing with all sorts of legal and professional services and matters to operate.\n<h3>Accounting Services</h3>\nOur professionals provide a range of accounting and assurance services of the highest standards.\n<h3>Tax Outsourcing</h3>\nUnlike our competitors we have in house qualified lawyers and accountants who can help you.\n<h3>Amazing Strategy</h3>\nOperates an atmosphere that promote creative approach for clients needs.\n\nLike What We Offer\n<h3>DO BUSINESS\nWITH US!</h3>\nIn order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.\n<a href=\"https://demo.casethemes.net/consultio-immigration/contact/\">\nContact us\n</a>\n<i>Our Value</i>\n<i>Our Mission</i>\n<i>Payroll Service</i>\nWe Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\nOur professionals provide a range of accounting and assurance services of the highest standards.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\nPeople are only as good as the tools they possess. So, to consistently deliver high-quality auditing.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\nTeam\n<h3>We draw on our global network to\nassemble a team of experts.</h3>\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"team-single\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-single-360x360.jpg\" alt=\"team-single\" width=\"360\" height=\"360\" />\n<h3>Fran Bostick</h3>\nFounder &amp; CEO\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team2\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team2-360x360.jpg\" alt=\"h6-team2\" width=\"360\" height=\"360\" />\n<h3>Tina Holt</h3>\nFederal Contractor\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team3\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team3-360x360.jpg\" alt=\"h6-team3\" width=\"360\" height=\"360\" />\n<h3>Charles Wilkinson</h3>\nFounder &amp; CEO\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team4\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team4-360x360.jpg\" alt=\"h6-team4\" width=\"360\" height=\"360\" />\n<h3>Michael Alan Tate</h3>\nVice President\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team1\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team1.jpg\" alt=\"h6-team1\" width=\"350\" height=\"350\" />\n<h3>Suzanne Higgins</h3>\nSenior Consultant\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-08 23:57:48','2021-05-08 23:57:48','',3493,'https://dm117.dev34.info/?p=5822',0,'revision','',0),(5823,1,'2021-05-08 23:57:48','2021-05-08 23:57:48','About us\n<h3>We’re a global stakeholder relations and consultancy.</h3>\nAt vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. We bring more than 24 years’ senior experience forging of\ncollaborations across government.\nPraesent feugiat sem.\nA wonderful serenity.\nPremium services for you.\nSet a link back to photo.\nCall to ask <a href=\"#\">any question</a> 540-325-1523\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap.png\" sizes=\"(max-width: 350px) 100vw, 350px\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" alt=\"\" width=\"350\" height=\"1\" />\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/signature-02.png\" alt=\"\" width=\"95\" height=\"85\" />\n<h3>Natalia Duke</h3>\n(Chairman and founder)\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/banner-01.png\" alt=\"\" width=\"510\" height=\"730\" />\n<h3>24 Years of Experience</h3>\nPricing\n<h3>We\'re ready to share our advice and experience.</h3>\nThe main difference between Statistic and Statistics is that the Statistic is a single measure of some attribute of a sample and Statistics is a study of the collection.\n<h3>Tax Consultancy</h3>\nThis is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n<h3>Audit &amp; assurance</h3>\nPeople are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n<h3>Value Added Tax</h3>\nWe are providing and dealing with all sorts of legal and professional services and matters to operate.\n<h3>Accounting Services</h3>\nOur professionals provide a range of accounting and assurance services of the highest standards.\n<h3>Tax Outsourcing</h3>\nUnlike our competitors we have in house qualified lawyers and accountants who can help you.\n<h3>Amazing Strategy</h3>\nOperates an atmosphere that promote creative approach for clients needs.\n\nLike What We Offer\n<h3>DO BUSINESS\nWITH US!</h3>\nIn order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.\n<a href=\"https://demo.casethemes.net/consultio-immigration/contact/\">\nContact us\n</a>\n<i>Our Value</i>\n<i>Our Mission</i>\n<i>Payroll Service</i>\nWe Have Over 3000 Registered Human Resource Portals To Seek out the Best For Your Company.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\nOur professionals provide a range of accounting and assurance services of the highest standards.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\nPeople are only as good as the tools they possess. So, to consistently deliver high-quality auditing.\nNetworks of our affiliates spreads all over the world inorder to provide a good grip in the Global Human Resource Recruitment System.\nTeam\n<h3>We draw on our global network to\nassemble a team of experts.</h3>\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"team-single\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-single-360x360.jpg\" alt=\"team-single\" width=\"360\" height=\"360\" />\n<h3>Fran Bostick</h3>\nFounder &amp; CEO\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team2\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team2-360x360.jpg\" alt=\"h6-team2\" width=\"360\" height=\"360\" />\n<h3>Tina Holt</h3>\nFederal Contractor\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team3\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team3-360x360.jpg\" alt=\"h6-team3\" width=\"360\" height=\"360\" />\n<h3>Charles Wilkinson</h3>\nFounder &amp; CEO\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team4\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team4-360x360.jpg\" alt=\"h6-team4\" width=\"360\" height=\"360\" />\n<h3>Michael Alan Tate</h3>\nVice President\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team1\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team1.jpg\" alt=\"h6-team1\" width=\"350\" height=\"350\" />\n<h3>Suzanne Higgins</h3>\nSenior Consultant\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-08 23:57:48','2021-05-08 23:57:48','',3493,'https://dm117.dev34.info/?p=5823',0,'revision','',0),(5562,1,'2020-10-12 17:16:56','2020-10-12 17:16:56','<ul id=\"menu-menu-courses\"><li id=\"menu-item-5546\"><a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">IELTS</a></li>\n<li id=\"menu-item-5547\"><a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">Skills Exam</a></li>\n<li id=\"menu-item-5548\"><a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">Take IELTS</a></li>\n<li id=\"menu-item-5549\"><a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">TOEFL</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n            </h3>\n			    <ul>\n                    <li>\n                       3111 West Allegheny Avenue\nPennsylvania 19132                    \n                           </li>\n                    <li>\n                       1-982-782-5297<br />\n1-982-125-6378                    \n                           </li>\n                    <li>\n                       support@consultio.com                    \n                           </li>\n            </ul>\n	    <h3>\n                        Downloads                    \n            </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Visa Application Form\n            	</a>\n                <a href=\"#\">\n            	                                Visa Application Form\n            	</a>\n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-980x500.jpg\" width=\"980\" height=\"500\" alt=\"theme-01\" title=\"theme-01\" />            		\n		Sponsoring and managing work visas parts now becoming results in the experience with future guranteed.There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/ud-blog1-475x600.jpg\" width=\"475\" height=\"600\" alt=\"ud-blog1\" title=\"ud-blog1\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>','Single Courses','','publish','closed','closed','','single-courses','','','2020-10-12 17:16:56','2020-10-12 17:16:56','',0,'https://demo.casethemes.net/consultio-immigration/?elementor_library=single-courses',0,'elementor_library','',0),(5582,1,'2020-10-13 02:25:32','2020-10-13 02:25:32','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n        <h3>\n            Get Settled        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Learn English        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Find Work        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Creativity        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n    	<img width=\"469\" height=\"388\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/banner-01.jpg\" alt=\"\" loading=\"lazy\" />    	    		15\n    					1\n    					+\n    					Satisfied Clients    				\n    <h3>Golden years we’ve passed!</h3>\n            We are consultio                            \n	    <h3>\n                        Single-minded focus &amp; hard work lead to desired job in just one year                    \n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n            Services                                        \n	    <h3>\n                        The fields on which we give servies                    \n            </h3>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/women-01.png\" alt=\"\" loading=\"lazy\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n            Countries                                        \n	    <h3>\n                        Immigration &amp; Visa are allowed some Countries                    \n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/section-map.png\" alt=\"\" loading=\"lazy\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n            Courses                                        \n	    <h3>\n                        We take some courses to make immigration easier                    \n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                                                            <h3>TOEFL</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>IELTS</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Spoken English</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/spoken-english/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/spoken-english/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Take IELTS</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Skills Exam</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">\n                                    Read more                                    \n                                </a>\n            Get in touch                            \n	    <h3>\n                        Don’t hasitate to contact with us for inquries!                    \n            </h3>\n<form action=\"/ctthemes/csuti-immigration/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n            Testimonials                                        \n	    <h3>\n                        We recieve the best client’s review.                    \n            </h3>\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n            Latest Blog                                        \n	    <h3>\n                        Know something more from our latest blog!                    \n            </h3>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','publish','closed','closed','','home-2','','','2020-10-13 02:25:32','2020-10-13 02:25:32','',0,'https://demo.casethemes.net/consultio-immigration/?elementor_library=home-2',0,'elementor_library','',0),(5583,1,'2021-04-03 20:20:56','2021-04-03 20:20:56','','Error 404','','publish','closed','closed','','error-404','','','2021-04-03 20:20:56','2021-04-03 20:20:56','',0,'https://dm117.dev34.info/2021/04/03/error-404/',35,'nav_menu_item','',0),(5584,1,'2021-04-03 20:20:56','2021-04-03 20:20:56','','Pages','','publish','closed','closed','','pages-2','','','2021-04-03 20:20:56','2021-04-03 20:20:56','',0,'https://dm117.dev34.info/2021/04/03/pages-2/',8,'nav_menu_item','',0),(5585,1,'2021-04-03 20:20:56','2021-04-03 20:20:56','','Error 404','','publish','closed','closed','','error-404-2','','','2021-04-03 20:20:56','2021-04-03 20:20:56','',0,'https://dm117.dev34.info/2021/04/03/error-404-2/',31,'nav_menu_item','',0),(5586,1,'2021-04-03 20:20:56','2021-04-03 20:20:56','','Demos','','publish','closed','closed','','demos','','','2021-04-03 20:20:56','2021-04-03 20:20:56','',0,'https://dm117.dev34.info/2021/04/03/demos/',1,'nav_menu_item','',0),(5587,1,'2021-04-03 20:20:56','2021-04-03 20:20:56','','Demos','','publish','closed','closed','','demos-2','','','2021-04-03 20:20:56','2021-04-03 20:20:56','',0,'https://dm117.dev34.info/2021/04/03/demos-2/',1,'nav_menu_item','',0),(5588,1,'2021-04-03 20:20:56','2021-04-03 20:20:56','','Dhaka branch','','publish','closed','closed','','dhaka-branch','','','2021-04-03 20:20:56','2021-04-03 20:20:56','',0,'https://dm117.dev34.info/2021/04/03/dhaka-branch/',1,'nav_menu_item','',0),(5589,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','London branch','','publish','closed','closed','','london-branch','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/london-branch/',2,'nav_menu_item','',0),(5590,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','New York branch','','publish','closed','closed','','new-york-branch','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/new-york-branch/',3,'nav_menu_item','',0),(5591,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','Los Angeles branch','','publish','closed','closed','','los-angeles-branch','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/los-angeles-branch/',4,'nav_menu_item','',0),(5592,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','Elements','','publish','closed','closed','','elements','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/elements/',63,'nav_menu_item','',0),(5593,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','Home','','publish','closed','closed','','home','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/home/',1,'nav_menu_item','',0),(5594,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','About us','','publish','closed','closed','','about-us','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/about-us/',2,'nav_menu_item','',0),(5595,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','Services','','publish','closed','closed','','services','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/services/',3,'nav_menu_item','',0),(5596,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','Courses','','publish','closed','closed','','courses','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/courses/',4,'nav_menu_item','',0),(5597,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','Testimonials','','publish','closed','closed','','testimonials','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/testimonials/',5,'nav_menu_item','',0),(5598,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','Blog','','publish','closed','closed','','blog','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/blog/',6,'nav_menu_item','',0),(5599,1,'2021-04-03 20:20:57','2021-04-03 20:20:57','','Contact','','publish','closed','closed','','contact','','','2021-04-03 20:20:57','2021-04-03 20:20:57','',0,'https://dm117.dev34.info/2021/04/03/contact/',7,'nav_menu_item','',0),(9,1,'2019-10-29 10:04:28','2019-10-29 10:04:28','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','publish','closed','closed','','home','','','2021-05-09 00:17:49','2021-05-09 00:17:49','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=9',0,'page','',0),(5782,1,'2021-04-03 21:37:20','2021-04-03 21:37:20','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]\nAvailable Now!\n<h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!</h3>\n<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\">								</a>\n<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nLatest Creation of Howard D. Brown\n<h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre</h3>\nDealers of the Macabre takes you to the backyard of the International Intelligence Community.\n\nDealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.\n\nThese three classic CIA cases have remained a secret until now.\n\nDealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.\n\n<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nPart 1\n<h3 data-wow-delay=\"ms\">\n            The Hong Kong Case</h3>\n<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>\n                        Part 2\n<h3 data-wow-delay=\"ms\">\n            The Plutonium Caper</h3>\n<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nPart 3\n<h3 data-wow-delay=\"ms\">\n            The Last Case</h3>\n<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>\n                        Reviews\n<h3 data-wow-delay=\"ms\">\n            What Readers Are Saying</h3>\nBy far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n<h3>\n                                            Lincoln Jones</h3>\nI\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n<h3>\n                                            Sammantha Hunter</h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:37:20','2021-04-03 21:37:20','',9,'https://dm117.dev34.info/?p=5782',0,'revision','',0),(5781,1,'2021-04-03 21:29:29','2021-04-03 21:29:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:29:29','2021-04-03 21:29:29','',9,'https://dm117.dev34.info/?p=5781',0,'revision','',0),(5775,1,'2021-04-03 21:28:36','2021-04-03 21:28:36','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:28:36','2021-04-03 21:28:36','',9,'https://dm117.dev34.info/?p=5775',0,'revision','',0),(5737,1,'2021-04-03 20:42:06','2021-04-03 20:42:06','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:42:06','2021-04-03 20:42:06','',9,'https://dm117.dev34.info/?p=5737',0,'revision','',0),(5733,1,'2021-04-03 20:40:32','2021-04-03 20:40:32','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:40:32','2021-04-03 20:40:32','',9,'https://dm117.dev34.info/?p=5733',0,'revision','',0),(24,1,'2019-10-30 08:04:10','2019-10-30 08:04:10','<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" width=\"1338\" height=\"2000\">\n<h3>\n                Contact Info</h3>\nThank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\n<b>\nhowardbrown160@yahoo.com</b>','Contact','','publish','closed','closed','','contact','','','2021-05-09 00:20:15','2021-05-09 00:20:15','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=24',0,'page','',0),(5868,1,'2021-05-09 00:20:14','2021-05-09 00:20:14','<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" width=\"1338\" height=\"2000\">\n<h3>\n                Contact Info</h3>\nThank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\n<b>\nhowardbrown160@yahoo.com</b>','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-05-09 00:20:14','2021-05-09 00:20:14','',24,'https://dm117.dev34.info/?p=5868',0,'revision','',0),(5809,1,'2021-05-06 23:35:32','2021-05-06 23:35:32','<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" />											\n                    <h3>\n                Contact Info            </h3>\n                Thank you for your interest. To contact the author, or for more information about Dealers of the Macabre, please send an email to:\n<B>\nhowardbrown160@yahoo.com','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-05-06 23:35:32','2021-05-06 23:35:32','',24,'https://dm117.dev34.info/?p=5809',0,'revision','',0),(5810,1,'2021-05-08 23:52:27','2021-05-08 23:52:27','About us\n	    <h3>\n                        Consulting is a law firm specialising in corporate finance work                    \n    </h3>\n		Advice on comprehensive legal solutions and legal planning on all aspects of business, including: issues under Company Law & Exchange Control Regulations.		\n        80%\n    <h3>Work<br/> Development</h3>\n        90%\n    <h3>Plan<br/> Fulfilled</h3>\n        50%\n    <h3>UI/UX<br/> Desigining</h3>\n										<img width=\"535\" height=\"519\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/h4-about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/h4-about1.png 535w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/h4-about1-300x291.png 300w\" sizes=\"(max-width: 535px) 100vw, 535px\" />											\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n			Services\n	    <h3>\n                        We deals with many services to take extra care of your problem solutions.                    \n    </h3>\n		Business services is a general term that describes work that supports a business but does not produce a tangible commodity. Information technology is important.		\n                        <h3>    \n                            Tax Consultancy                        </h3>\n                        This is one of many areas of\nprofessional services where our firm is well ahead of the competition.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Audit & assurance                        </h3>\n                        People are only as good as the tools they possess. So, to consistently deliver high-quality auditing services.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Value Added Tax                        </h3>\n                        We are providing and dealing with all sorts of legal and professional services and matters to operate.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Accounting Services                        </h3>\n                        Our professionals provide a range of accounting and assurance services of the highest standards.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Tax Outsourcing                        </h3>\n                        Unlike our competitors we have in house qualified lawyers and accountants who can help you.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n                        <h3>    \n                            Amazing Strategy                        </h3>\n                        Operates an atmosphere that promote creative approach for clients needs.\n                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\"></a>\n			Funfact\n	    <h3>\n                        Don’t misread here we have random &amp; interesting facts.                    \n    </h3>\n		Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\nto sell & consult.		\n                            <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n            1\n            +\n                    Team members\n            1\n            +\n                    Winning Awards\n            1\n            +\n                    Client’s Feedback\n            1\n            +\n                    Completed Works\n			Testimonial\n	    <h3>\n                        It’s always a joy to hear that the work we do, has positively reviews.                    \n    </h3>\n		We have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.		\n                                I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                                        \n                                        <h3>    \n                                            Maria Silverii                                        </h3>\n                                        CEO of Blue Illusion\n                                I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Phillip Macintyre                                        </h3>\n                                        CEO of Blue Illusion\n                                Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\nthem.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-01.jpg\" width=\"100\" height=\"100\" alt=\"team-01\" title=\"team-01\" />                                        \n                                        <h3>    \n                                            Amy Harrison                                        </h3>\n                                        Contiki Holidays\n                                I asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Maria Silverii                                        </h3>\n                                        CEO of Blue Illusion\n                                Great, versatile theme with lots of customisability. But - above all that the customer support is amazing, useful and quick! I must recommand\nthem.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01-122x122.jpg\" width=\"122\" height=\"122\" alt=\"home-author-01\" title=\"home-author-01\" />                                        \n                                        <h3>    \n                                            Amy Harrison                                        </h3>\n                                        Contiki Holidays\n                                I love Consultio! It really looks more original than many others.Support deserves 7 stars but, unfortunately, you do not have that option. I really suggest you to work with them.\n                                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-02-122x122.jpg\" width=\"122\" height=\"122\" alt=\"home-author-02\" title=\"home-author-02\" />                                        \n                                        <h3>    \n                                            Phillip Macintyre                                        </h3>\n                                        CEO of Blue Illusion\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:52:27','2021-05-08 23:52:27','',3491,'https://dm117.dev34.info/?p=5810',0,'revision','',0),(26,1,'2019-10-30 08:04:23','2019-10-30 08:04:23','<h3>\n                            <i></i>\n                        We’re a global stakeholder relations and partnership building consultancy.                    \n            </h3>\n		Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.We bring more than 24 years’ senior experience forging of\ncollaborations across government.		\n	            		Praesent feugiat sem mattis.	            	\n	            		A wonderful serenity.	            	\n	            		Premium services for you.	            	\n	            		Set a link back to photo.	            	\n		Call to ask <a href=\"#\">any question</a>  540-325-1523		\n										<img width=\"350\" height=\"1\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap.png 350w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-300x1.png 300w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-150x1.png 150w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-gap-250x1.png 250w\" sizes=\"(max-width: 350px) 100vw, 350px\" />											\n        	<img width=\"95\" height=\"85\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/signature.png\" alt=\"\" loading=\"lazy\" />        \n    	<h3>Natalia Duke</h3>\n    	(Chairman and founder)\n										<img width=\"558\" height=\"631\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about1.png 558w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about1-265x300.png 265w\" sizes=\"(max-width: 558px) 100vw, 558px\" />											\n            Want to know more about us?\n            Just download brochure...\n            <a href=\"#\">\n                                                                    Download Brochure            </a>\n	    <h3>\n                            <i></i>\n                        We position our clients at the forefront of their field by advanced services.                    \n            </h3>\n		We bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.		\n	    <h3>\n                            <i></i>\n                        Consultio is a professional consulting company                    \n            </h3>\n		At vero eos et accusamus et iusto odio digni goiku ssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n			Start		\n								<h3>\n																			2nd Feb, 2018																	</h3>\n								Exhibition Planning &amp; Exhibition Management\n								<h3>\n																			21st Jul, 2018																	</h3>\n								Growth internationallyfirst half of the 2018s\n								<h3>\n																			19th Aug, 2018																	</h3>\n								The purpose of the business plan\n								<h3>\n																			2nd Jan, 2019																	</h3>\n								Focus business history on what matters to planning\n								<h3>\n																			22nd Sep, 2019																	</h3>\n								History to Unite and Inspire People\n								<h3>\n																			12th Jan, 2018																	</h3>\n								Establishment of Constrio\n								<h3>\n																			8th Jul, 2018																	</h3>\n								Registered as a construction company\n								<h3>\n																			18th Aug, 2018																	</h3>\n								Construction bought the Greek company Delta\n								<h3>\n																			27th Sep, 2018																	</h3>\n								For lean business plans, operational plans, and strategic plans\n								<h3>\n																			8th Jul, 2019																	</h3>\n								Award winner\n			<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/theme-15-150x150.jpg\" width=\"150\" height=\"150\" alt=\"theme-15\" title=\"theme-15\" />		\n	    <h3>\n                            <i></i>\n                        We have many reviews from our satisfied clients.                    \n            </h3>\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Kathleen Smith                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                                    \n                                    I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                                    <h3>    \n                                        Van Hunter                                    </h3>\n                                    Senior Director\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                                    \n                                    He was great in planting the seed and allowing the group to transition into a collaborative discussion pertaining.\n                                    <h3>    \n                                        Macquarie Telecom                                    </h3>\n                                    Leadership Group\n                                <i>”</i>\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                    \n                                    We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                                    <h3>    \n                                        Fred L Smith                                     </h3>\n                                    Senior Director\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>','About','','publish','closed','closed','','about','','','2019-10-30 08:04:23','2019-10-30 08:04:23','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=26',0,'page','',0),(28,1,'2019-10-30 08:05:01','2019-10-30 08:05:01','Team\n	    <h3>\n                We draw on our global network to assemble a team of experts.    </h3>\n		We also bring a strong interest in coaching and capability building, with an emphasis on emotional intelligence and effective stakeholder relationships.		\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-07-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-07\" title=\"testimonial-07\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Donald Johnson                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-01.jpg\" width=\"100\" height=\"100\" alt=\"team-01\" title=\"team-01\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Jewel D Smith                		        </h3>\n                		        Executive Director\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-02.jpg\" width=\"100\" height=\"100\" alt=\"team-02\" title=\"team-02\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Alan Smith                		        </h3>\n                		        Managing Director\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-03.jpg\" width=\"100\" height=\"100\" alt=\"team-03\" title=\"team-03\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Brad Smith                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-06\" title=\"testimonial-06\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Kathleen Smith                		        </h3>\n                		        Senior Director\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-04.jpg\" width=\"100\" height=\"100\" alt=\"team-04\" title=\"team-04\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Joyce Thompson                		        </h3>\n                		        Asistant Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-05\" title=\"testimonial-05\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Kathleen Smith                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Details</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-09-100x100.jpg\" width=\"100\" height=\"100\" alt=\"testimonial-09\" title=\"testimonial-09\" /></a>\n                                                                                <a href=\"#\"></a>\n                            	<h3>	\n                	            	Joyce Thompson                		        </h3>\n                		        Executive Manager\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Details</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team','','publish','closed','closed','','team','','','2019-10-30 08:05:01','2019-10-30 08:05:01','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=28',0,'page','',0),(30,1,'2019-10-30 08:05:16','2019-10-30 08:05:16','FAQ\n	    <h3>\n        You can learn more from our asked questions    </h3>\n		At vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                    <a>What should I include in my personal statement?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Will membership plans be charged automatically?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>How can I make a change to my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Where can I find out about funding?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>What will happen when I’ve sent my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n                    <a>Can I get a free trial before I purchase?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiu smod tempor incididunt</u> ut labore.\n	    <h3>\n        Still have you any problem  for solutions?    </h3>\n		For any inquiries relating to my  Retail and Leadership\nPrograms or Coaching and Mentoring services feel free to speak to me personally by call us during business hours.		\n        <h3>\n            Head office address:        </h3>\n        3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail for information:        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f1615-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1615\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1615-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<label>First name*</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type your first name\" />\n<label>Last name*</label><input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type your last name\" />\n<label>Select a subject to get help*</label><select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Select a subject\">Select a subject</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<label>Your mail address*</label><input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type mail address\" />\n<label>Message*</label><textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type message...\"></textarea>\n<button type=\"submit\">Submit now</button>\n</form>        \n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','FAQ','','publish','closed','closed','','faq','','','2019-10-30 08:05:16','2019-10-30 08:05:16','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=30',0,'page','',0),(32,1,'2019-10-30 08:05:37','2019-10-30 08:05:37','Pricing\n	    <h3>\n        We’re a global stakeholder relations and consultancy.    </h3>\n		Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the\nconnection, we create platforms.		\n                Monthly\n                Yearly Save 20%\n                    <style>.elementor-1214 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1214 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-1214 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-1214 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;}}</style>		\n							<section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $29/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $59/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n		</section>\n                    <style>.elementor-1217 .elementor-element.elementor-element-c6873c8{margin-top:0px;margin-bottom:0px;}.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-1217 .elementor-element.elementor-element-9c8bcbf > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-1217 .elementor-element.elementor-element-9c326ae > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-1217 .elementor-element.elementor-element-ba9c4e2 > .elementor-element-populated{margin:39px 0px 0px 0px;}}</style>		\n							<section data-id=\"c6873c8\" data-element_type=\"section\">\n        <h3>Basic Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $49/ monthly\n                    <ul>\n                                    <li><del>24/7 system monitoring</del></li>\n                                    <li>Security management</li>\n                                    <li><del>Secure finance backup</del></li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n            Recommended\n        <h3>Standard Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $89/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li><del>Security management</del></li>\n                                    <li>Secure finance backup</li>\n                                    <li><del>Remote support</del></li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n        <h3>Extended Plan</h3>\n        The argument in favor of using to filler text goes something.\n    $120/ monthly\n                    <ul>\n                                    <li>24/7 system monitoring</li>\n                                    <li>Security management</li>\n                                    <li>Secure finance backup</li>\n                                    <li>Remote support</li>\n                            </ul>\n                <a href=\"#\">Get a free trial</a>\n		</section>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>','Pricing','','publish','closed','closed','','pricing','','','2019-10-30 08:05:37','2019-10-30 08:05:37','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=32',0,'page','',0),(123,1,'2019-11-02 02:32:13','2019-11-02 02:32:13','Pricing\n	    <h3>\n        Learn something more from our blog    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                            <ul>\n                                                                            <li>November 4, 2018</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">\n                                        Read more                                        \n                                    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Blog Carousel','','publish','closed','closed','','blog-carousel','','','2019-11-02 02:32:13','2019-11-02 02:32:13','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=123',0,'page','',0),(125,1,'2019-11-02 02:32:23','2019-11-02 02:32:23','<a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>','Blog Grid 2 Columns + Sidebar Left','','publish','closed','closed','','blog-grid-2-columns-sidebar-left','','','2019-11-02 02:32:23','2019-11-02 02:32:23','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=125',0,'page','',0),(127,1,'2019-11-02 02:32:36','2019-11-02 02:32:36','<a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to beo usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">How to go about intiating an start-up in a matter.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up-in-a-matter-of-days/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\">Main reasons to explan fast business builder</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/engaging-new-audiences-through-smart-approach/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>','Blog Grid 2 Columns + Sidebar Right','','publish','closed','closed','','blog-grid-2-columns-sidebar-right','','','2019-11-02 02:32:36','2019-11-02 02:32:36','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=127',0,'page','',0),(129,1,'2019-11-02 02:32:56','2019-11-02 02:32:56','Our Service area\n	    <h3>\n                        Learn something more from our blog                    \n    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-14-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-09\" title=\"theme-09\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 5, 2019</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x414.jpg\" width=\"600\" height=\"414\" alt=\"theme-05\" title=\"theme-05\" /></a>\n                                                                    <ul>\n                                                                                    <li>November 4, 2018</li>\n                                                                                                                            <li>\n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                            </ul>\n                                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">Blackpool polices hunt for David Schwimmer</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/many-types-of-construction-equipment-are-designed/\">\n                                            Read more                                            \n                                        </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Blog Grid 3 Columns','','publish','closed','closed','','blog-grid-3-columns','','','2019-11-02 02:32:56','2019-11-02 02:32:56','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=129',0,'page','',0),(132,1,'2019-11-02 02:33:10','2019-11-02 02:33:10','','Blog Standard','','publish','closed','closed','','blog-standard','','','2019-11-02 02:33:10','2019-11-02 02:33:10','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=132',0,'page','',0),(134,1,'2019-11-02 02:33:24','2019-11-02 02:33:24','','Blog Standard Left Sidebar','','publish','closed','closed','','blog-standard-left-sidebar','','','2019-11-02 02:33:24','2019-11-02 02:33:24','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=134',0,'page','',0),(136,1,'2019-11-02 02:33:37','2019-11-02 02:33:37','','Blog Standard Without Sidebar','','publish','closed','closed','','blog-standard-without-sidebar','','','2019-11-02 02:33:37','2019-11-02 02:33:37','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=136',0,'page','',0),(362,1,'2019-11-11 01:50:45','2019-11-11 01:50:45','<h3>\n        We will satisfy you by our work ideas    </h3>\n		At vero eos et accusamus et iusto odio digni goiku sendeno\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n				<h3>Ronald Dumple</h3>\n				Web Designer\n		<ul>\n							<li>info@consulio.com </li>\n										<li>+123 (4567) 890</li>\n										<li>380 St Kilda Road, Melbourne VIC 3004, Australia</li>\n					</ul>\n					<a href=\"https://demo.casethemes.net/consultio-immigration/contact/\">Appionment</a>\n								            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n			            			        			            			                <a href=\"#\">\n			                    			                    			                </a>\n		Lorem ipsum dolor sit amet consectetur adipiscing tofo dosed do eiusmod tempor incididunt ut labore  dolore sedodir magna aliqua.  Lorem Ipsum has been rode. Making good food choices takes on special significant for people living with diabetes.  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magnaaliqua anim id est laborum. Sed ut perspiciatis unde.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam. Ut enim ad minim veniam. 		\n        <h3>\n            Expert team member        </h3>\n        Lorem ipsum dolor sit amet, cotu\ntopsectetur adipisicing elit, sed.\n        <h3>\n            24/7 Customer support        </h3>\n        Lorem ipsum dolor sit amet, cotu\ntopsectetur adipisicing elit, sed.\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team Details','','publish','closed','closed','','team-details','','','2019-11-11 01:50:45','2019-11-11 01:50:45','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=362',0,'page','',0),(367,1,'2019-11-11 02:18:04','2019-11-11 02:18:04','<h3>\n                We have many reviews from our satisfied clients.    </h3>\n		It’s always a joy to hear that the work I do has positively impacted our clients and that they are happy to share their experience.		\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-07.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-07\" title=\"testimonial-07\" />                            \n                            We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                            <h3>    \n                                Kathleen Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-08.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-08\" title=\"testimonial-08\" />                            \n                            I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                            <h3>    \n                                Van Hunter                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-09.jpg\" width=\"130\" height=\"130\" alt=\"testimonial-09\" title=\"testimonial-09\" />                            \n                            He was great in planting the seed and allowing the group to transition into a\ncollaborative discussion pertaining.\n                            <h3>    \n                                Macquarie Telecom                            </h3>\n                            Leadership Group\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                            \n                            We also bring a strong interest in coaching and capability building, with an emphasis on emotional.\n                            <h3>    \n                                Fred L Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                            \n                            I love that moment when we find the connections between organisations and envisage the initiative or platform.\n                            <h3>    \n                                Carolyn Smith                            </h3>\n                            Senior Director\n                        <i>”</i>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-04.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-04\" title=\"testimonial-04\" />                            \n                            He was great in planting the seed and allowing the group to transition into a\ncollaborative discussion pertaining.\n                            <h3>    \n                                Pamela Johnson                            </h3>\n                            Leadership Group\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Testimonials','','publish','closed','closed','','testimonials','','','2019-11-11 02:18:04','2019-11-11 02:18:04','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=367',0,'page','',0),(407,1,'2019-11-11 08:33:51','2019-11-11 08:33:51','Services\n	    <h3>\n                        We position our clients at the forefront of their field by advancing an agenda.                    \n    </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-12-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-12\" title=\"theme-12\" />                                \n                                                                                                                <h3>Tax Consulting</h3>\n                                            Save money on insurance with money saving expert\'s guides to car insurance.                                        \n                                                                    <h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/tax-consulting/\">Tax Consulting</a>\n                                                                            </h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/tax-consulting/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                                \n                                                                                                                <h3>Fund Transfer</h3>\n                                            Our basic coverage offers more features than many policies out there.                                        \n                                                                    <h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/fund-transfer/\">Fund Transfer</a>\n                                                                            </h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/fund-transfer/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                                \n                                                                                                                <h3>Business Planning</h3>\n                                            Drive down your rates with car insurance discounts and premium                                        \n                                                                    <h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a>\n                                                                            </h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">+</a>\n                                                                                                                <h3>Market Research</h3>\n                                            Save up to 10% when you insure your property and autos with our company.                                        \n                                                                    <h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a>\n                                                                            </h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-04\" title=\"theme-04\" />                                \n                                                                                                                <h3>SEO Optimization</h3>\n                                            Stay protected from 10 critical illnesses for 10 years with life insurance.                                        \n                                                                    <h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a>\n                                                                            </h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">+</a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-10\" title=\"theme-10\" />                                \n                                                                                                                <h3>Legal Assessment</h3>\n                                            Help protect lost income, pay for higher education, and cover debts or burial costs.                                        \n                                                                    <h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/legal-assessment/\">Legal Assessment</a>\n                                                                            </h3>\n                                                                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/legal-assessment/\">+</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Services v.1','','publish','closed','closed','','services-v-1','','','2019-11-11 08:33:51','2019-11-11 08:33:51','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=407',0,'page','',0),(409,1,'2019-11-11 08:37:45','2019-11-11 08:37:45','Services\n	    <h3>\n                        We position our clients at the forefront of their field by advancing an agenda.                    \n            </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/update-service-01-450x450.jpg\" width=\"450\" height=\"450\" alt=\"update-service-01\" title=\"update-service-01\" />                                \n                                                                            <h3>Financial Limit</h3>\n                                                                                    <h3>Financial Limit</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/service/financial-limit/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/03/update-service-02-450x450.jpg\" width=\"450\" height=\"450\" alt=\"update-service-02\" title=\"update-service-02\" />                                \n                                                                            <h3>Financial Growth</h3>\n                                                                                    <h3>Financial Growth</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/service/financial-growth/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/update-blog3-450x450.jpg\" width=\"450\" height=\"450\" alt=\"update-blog3\" title=\"update-blog3\" />                                \n                                                                            <h3>Tax Management</h3>\n                                                                                    <h3>Tax Management</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/service/tax-management/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                            <h3>Customer Experience</h3>\n                                                                                    <h3>Customer Experience</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/service/customer-experience/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/gallery-05-450x450.jpg\" width=\"450\" height=\"450\" alt=\"gallery-05\" title=\"gallery-05\" />                                \n                                                                            <h3>Private Equity</h3>\n                                                                                    <h3>Private Equity</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/service/private-equity/\">\n                                                    Read more                                                </a>\n                                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-450x450.jpg\" width=\"450\" height=\"450\" alt=\"theme-10\" title=\"theme-10\" />                                \n                                                                            <h3>Automotive &#038; Mobility</h3>\n                                                                                    <h3>Automotive &#038; Mobility</h3>\n                                                Lorem Ipsum is simply dummy text of the printing and its typeseting industry.                                            \n                                                <a href=\"https://demo.casethemes.net/consultio-immigration/service/automotive-mobility/\">\n                                                    Read more                                                </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>','Services v.2','','publish','closed','closed','','services-v-2','','','2019-11-11 08:37:45','2019-11-11 08:37:45','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=409',0,'page','',0),(5347,1,'2020-10-02 01:50:28','0000-00-00 00:00:00','','Appionment','','draft','closed','closed','','','','','2020-10-02 01:50:28','0000-00-00 00:00:00','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=5347',0,'page','',0),(415,1,'2019-11-11 08:40:33','2019-11-11 08:40:33','<h3>\n                Our client, global analytical techno company, wanted to build market.    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/financial-analysis/\">+</a>\n                Load more            \n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid','','publish','closed','closed','','portfolio-grid','','','2019-11-11 08:40:33','2019-11-11 08:40:33','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=415',0,'page','',0),(417,1,'2019-11-11 08:41:02','2019-11-11 08:41:02','<h3>\n                Our client, global analytical techno company, wanted to build market.    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x600.jpg\" width=\"600\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Masonry','','publish','closed','closed','','portfolio-masonry','','','2019-11-11 08:41:02','2019-11-11 08:41:02','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=417',0,'page','',0),(748,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','','Shop','','publish','closed','closed','','shop','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-immigration/shop/',0,'page','',0),(749,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-immigration/cart/',0,'page','',0),(750,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-immigration/checkout/',0,'page','',0),(751,1,'2019-11-15 04:08:59','2019-11-15 04:08:59','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2019-11-15 04:08:59','2019-11-15 04:08:59','',0,'https://demo.casethemes.net/consultio-immigration/my-account/',0,'page','',0),(783,1,'2019-11-15 07:35:57','2019-11-15 07:35:57','[yith_wcwl_wishlist]','Shop Wishlist','','publish','closed','closed','','shop-wishlist','','','2019-11-15 07:35:57','2019-11-15 07:35:57','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=783',0,'page','',0),(1972,1,'2019-12-05 08:34:53','2019-12-05 08:34:53','Career\n	    <h3>\n                From startups to Fortune 500s, WayUp offers the best internships and jobs.    </h3>\n		Easily apply to multiple jobs with one click! Quick Apply shows you recommended jobs based off your most recent search and allows you to apply to 25+ jobs in a matter of seconds!		\n                                    <a href=\"#\"><img width=\"39\" height=\"40\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/icon-google.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Digital Designer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now fds</a>\n                                    <a href=\"#\"><img width=\"44\" height=\"44\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/icon-envato.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Graphic Artist                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"41\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/icon-themeforest.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Sales Reporter                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"53\" height=\"47\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/icon-codecanyon.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Digital Marketer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"39\" height=\"40\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/icon-google.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Web Designer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                    <a href=\"#\"><img width=\"41\" height=\"41\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/icon-career.png\" alt=\"\" /></a>\n                                <h3>    \n                                    Web Developer                                </h3>\n                                <ul>\n                                                                                <li>Jam Sports Productions LLC</li>\n                                                                                    <li>Admin</li>\n                                                                                    <li>Newyork, SCT</li>\n                                                                                    <li>Remote</li>\n                                                                        </ul>\n                        We would love to share a similar experience and how I learned some valuable lessons. \n                                <a href=\"#\">Apply now</a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Careers','','publish','closed','closed','','careers','','','2019-12-05 08:34:53','2019-12-05 08:34:53','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=1972',0,'page','',0),(2269,1,'2019-12-12 03:13:06','2019-12-12 03:13:06','[rev_slider alias=\"finance\"][/rev_slider]		\n                                    <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-04\" title=\"theme-04\" />                                \n                                                                                                                <h3>Business Planning</h3>\n                                            We develop the relationships that underpin the next phase in your organisation’s growth. We do this by discerning the people.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-10\" title=\"theme-10\" />                                \n                                                                                                                <h3>Program management</h3>\n                                            The development of your next business plan will be executed by a brilliant team who will indicate your grand success.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">Program management</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                                \n                                                                                                                <h3>Strategy</h3>\n                                            What separates York agency from all other web design agencies is the ability to offer the most User Friendly Experience.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/strategy/\">Strategy</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/strategy/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                                \n                                                                                                                <h3>Chart management</h3>\n                                            Graphic design is the process of visual and problem-solving using one or more of typography, photography and illustration.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">Chart management</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-12-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-12\" title=\"theme-12\" />                                \n                                                                                                                <h3>SEO Optimization</h3>\n                                            A blueprint for accomplishing your objectives, from thought leadership to capacity building, photography and illustration.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">+</a>\n                                    <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-541x600.jpg\" width=\"541\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                                \n                                                                                                                <h3>Market Research</h3>\n                                            Photography is the core of everything we do, photography equipment, camera, photography and reviews, photography articles.                                        \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">+</a>\n		You can also find our <a href=\"#\">Consultant Service</a> to contact for the consulting		\n	    <h3>\n                            <i></i>\n                        We’re a global stakeholder relations and partnership building consultancy.                    \n    </h3>\n		Collaborate Consulting exists to find the place where to being seemingly disparate interests meet. From that point of the connection, we create platforms.		\n        <h3>Strategic vision</h3>\n        A client once told us that where the others focus on one star one issue we see the whole sky. \n        <h3>Interpersonal skills</h3>\n        Forging relationships between\nmulti-national corporations, govern ments and global NGOs begins with connections between people.\n        <h3>Networks that span sectors</h3>\n        Over more than 20 years, we’ve \nfostered trusted relationships across government, industry and global forums. \n        <h3>Flexible delivery model</h3>\n        We adapt our delivery to the way your work, whether as an external provider or by providing senior.\n										<img width=\"558\" height=\"631\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about1.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about1.png 558w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about1-265x300.png 265w\" sizes=\"(max-width: 558px) 100vw, 558px\" />											\n	    <h3>\n                            <i></i>\n                        We position our clients at the forefront of their field by advancing an agenda.                    \n    </h3>\n		We bring more than 20 years’ senior experience forging\ncollaborations across government, private sector and\ninternational forums.		\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\">Success fullfill</a></h3>\n                                    A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                                \n                                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\"></a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\">StartUp Business</a></h3>\n                                    Photography is the core of everything we do, photography equipment, camera, photography.                                \n                                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\"></a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\">Leadership Work</a></h3>\n                                    When there is a key element of your organisation that is limiting your people’s to engagement performance.                                \n                                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\"></a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\">Business Growth</a></h3>\n                                    Whatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.                                \n                                                        <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\"></a>\n	    <h3>\n                            <i></i>\n                        We draw on our global network to assemble with the skills of task at hand.                     \n    </h3>\n		We have spent 25 years working for one of Australia’s most\nrecognised and successful retailers purpose and inspired culture, where people work cohesively towards shared goals.		\n        50%\n    <h3>Active to work</h3>\n    We do not believe in contracts\ntherefore we do not have one. \nWe are fully invested.\n        75%\n    <h3>Completed work</h3>\n    You will be fully satisfied, you\nare under no obligation to continue with the services I provide.\n										<img width=\"624\" height=\"558\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-02.png\" alt=\"\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-02.png 624w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-02-300x268.png 300w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/about-02-600x537.png 600w\" sizes=\"(max-width: 624px) 100vw, 624px\" />											\n	    <h3>\n                            <i></i>\n                        To review means to look back over something for evaluation or memory.                    \n    </h3>\n		It’s always a joy to hear that the work I do has positively\nimpacted our clients and that they are happy to share their\nexperience.		\n                                <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-10.jpg\" width=\"196\" height=\"196\" alt=\"testimonial-10\" title=\"testimonial-10\" />                                “\n                                <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-01.jpg\" width=\"300\" height=\"300\" alt=\"home-author-01\" title=\"home-author-01\" />                                “\n                                <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-author-02.jpg\" width=\"300\" height=\"300\" alt=\"home-author-02\" title=\"home-author-02\" />                                “\n                                <img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-single-300x300.jpg\" width=\"300\" height=\"300\" alt=\"team-single\" title=\"team-single\" />                                “\n                                I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                <h3>    \n                                    Maria Silverii                                </h3>\n                                CEO of Blue Illusion\n                                I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                <h3>    \n                                    Kathleen Smith                                 </h3>\n                                Senior Director\n                                I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                <h3>    \n                                    Pamela Johnson                                 </h3>\n                                Leadership Group\n                                I had the pleasure of working with Consultio as part of a 6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n                                <h3>    \n                                    Macquarie Telecom                                 </h3>\n                                Senior Director\n	    <h3>\n                        You can learn more from our asked questions                    \n    </h3>\n                    <a>What should I include in my personal statement?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>What will happen when I’ve sent my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>How can I make a change to my application?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n                    <a>How can I consult with the consultant team?</a>\n                Lorem ipsum dolor sit amet consecte tur adipiscing elit sed do <u>eiusmod tempor incididunt</u> ut labore.\n	    <h3>\n                        Get a free quote here                    \n    </h3>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail*\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\" />\n<select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Subject\">Subject</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Consult today</button>\n</form>        \n	    <h3>\n                            <i></i>\n                        Many organizations realize the benefits of forming work teams.                    \n    </h3>\n		Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.		\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img width=\"267\" height=\"352\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-team-01.jpg\" alt=\"\" /></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Gwen Johnson</a>\n                                    </h3>\n                                    Founder &amp; CEO\n                                    <ul>\n                                                                                        <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img width=\"267\" height=\"352\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-team-02.jpg\" alt=\"\" /></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Thomas Olsen</a>\n                                    </h3>\n                                    Regional Leader\n                                    <ul>\n                                                                                        <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"\"></a>\n                                                </li>\n                                                                                </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img width=\"267\" height=\"352\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-team-03.jpg\" alt=\"\" /></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">Manny Maceda</a>\n                                    </h3>\n                                    Managing Partner\n                                    <ul>\n                                                                                        <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"\"></a>\n                                                </li>\n                                                                                </ul>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\"><img width=\"267\" height=\"352\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-team-04.jpg\" alt=\"\" /></a>\n                                    <h3>    \n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/team-details/\">James Allen</a>\n                                    </h3>\n                                    Chief Executive\n                                    <ul>\n                                                                                        <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"#\"></a>\n                                                </li>\n                                                                                            <li>\n                                                    <a href=\"\"></a>\n                                                </li>\n                                                                                </ul>\n	    <h3>\n                            <i></i>\n                        Don’t misread here we have random &amp; interesting facts.                    \n    </h3>\n		Starfish can re-grow their arms. In fact, a single arm can regenerate a whole body. Google\'s founders were willing\nto sell & consult.		\n                            <a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n        </a>\n            1\n            +\n                    Team members\n            1\n            +\n                    Winning Awards\n            1\n            +\n                    Client’s Feedback\n            1\n            +\n                    Completed Works\n	    <h3>\n                            <i></i>\n                        Our client, global analytical techno company, wanted to build market.                    \n    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/financial-analysis/\">+</a>\n                Load more            \n	    <h3>\n                            <i></i>\n                        Get in touch for any kind of help and informations                    \n    </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n        <h3>\n            Our head office address:        </h3>\n        3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail us for information        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f2166-o2\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"2166\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.6\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f2166-o2\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>        \n        	    Best Business Award ‘19\n        <a href=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/award-01.jpg\"></a>\n        	    Family Business Award \n        <a href=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/award-02.jpg\"></a>\n        	    Excellence in Exporting\n        <a href=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/award-03.jpg\"></a>\n	    <h3>\n                            <i></i>\n                        We believe, the passion trying &amp; skill can make a top-performing company.                     \n    </h3>\n										<img width=\"186\" height=\"123\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/award-year.png\" alt=\"\" />											\n	    <h5>\n                        Business Awards We Got!                    \n    </h5>\n        	    Global Safety Award \n        <a href=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/award-04.jpg\"></a>\n        	    Sales Excellence Award \n        <a href=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/award-05.jpg\"></a>\n        	    Top Leading Global  Trade\n        <a href=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/award-06.jpg\"></a>\n	    <h3>\n                            <i></i>\n                        We’re here to share story &amp; more news from resource library.                    \n    </h3>\n		We would love to share a similar experience and how I\nlearned some valuable lessons during a downturn.		\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\"><img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-10\" title=\"theme-10\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">Strategy for Norway&#8217;s Peion to Fund Global.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/strategy-for-norways-peion-to-fund-global/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\"><img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-07\" title=\"theme-07\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">What we are capable to usually discovered.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/what-we-are-capable-to-beo-usually-discovered/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\"><img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-14-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-14\" title=\"theme-14\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">Food industry leaders often change their.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/food-industry-leaders-often-change-their-profound/\">\n                                        Read more                                        \n                                    </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\"><img data-src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13-600x389.jpg\" width=\"600\" height=\"389\" alt=\"theme-13\" title=\"theme-13\" /></a>\n                                                            <ul>\n                                                                            <li>November 5, 2019</li>\n                                                                                                                <li>\n                                            <a href=\"https://demo.casethemes.net/consultio-immigration/author/admin/\">admin</a></li>\n                                                                    </ul>\n                                                        <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                        \n                                    </a>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Shortcode','','publish','closed','closed','','shortcode','','','2019-12-12 03:13:06','2019-12-12 03:13:06','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=2269',0,'page','',0),(3491,1,'2020-02-07 02:16:32','2020-02-07 02:16:32','About The Book                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n			<a href=\"https://dm117.dev34.info/about-the-book/\" role=\"button\">\n						Buy Your Copy\n					</a>\n										<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" />','About The Book','','publish','closed','closed','','about-the-book','','','2021-05-08 23:55:49','2021-05-08 23:55:49','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3491',0,'page','',0),(5815,1,'2021-05-08 23:54:14','2021-05-08 23:54:14','About The Book\n<h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre</h3>\nDealers of the Macabre takes you to the backyard of the International Intelligence Community.\n\nDealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.\n\nThese three classic CIA cases have remained a secret until now.\n\nDealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.\n\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" width=\"1338\" height=\"2000\">','About The Book','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:54:14','2021-05-08 23:54:14','',3491,'https://dm117.dev34.info/?p=5815',0,'revision','',0),(5812,1,'2021-05-08 23:52:27','2021-05-08 23:52:27','About The Book                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" />','About v.2','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:52:27','2021-05-08 23:52:27','',3491,'https://dm117.dev34.info/?p=5812',0,'revision','',0),(5816,1,'2021-05-08 23:55:25','2021-05-08 23:55:25','About The Book\n<h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre</h3>\nDealers of the Macabre takes you to the backyard of the International Intelligence Community.\n\nDealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.\n\nThese three classic CIA cases have remained a secret until now.\n\nDealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.\n\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" width=\"1338\" height=\"2000\">','About The Book','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:55:25','2021-05-08 23:55:25','',3491,'https://dm117.dev34.info/?p=5816',0,'revision','',0),(5814,1,'2021-05-08 23:54:08','2021-05-08 23:54:08','','481666','','inherit','open','closed','','481666','','','2021-05-08 23:54:08','2021-05-08 23:54:08','',3491,'https://dm117.dev34.info/wp-content/uploads/2021/05/481666.jpg',0,'attachment','image/jpeg',0),(5817,1,'2021-05-08 23:55:25','2021-05-08 23:55:25','About The Book\n<h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre</h3>\nDealers of the Macabre takes you to the backyard of the International Intelligence Community.\n\nDealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.\n\nThese three classic CIA cases have remained a secret until now.\n\nDealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.\n\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" width=\"1338\" height=\"2000\">','About The Book','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:55:25','2021-05-08 23:55:25','',3491,'https://dm117.dev34.info/?p=5817',0,'revision','',0),(5818,1,'2021-05-08 23:55:25','2021-05-08 23:55:25','About The Book                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n			<a href=\"https://dm117.dev34.info/about-the-book/\" role=\"button\">\n						Buy Your Copy\n					</a>\n										<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w\" sizes=\"(max-width: 1338px) 100vw, 1338px\" />','About The Book','','inherit','closed','closed','','3491-revision-v1','','','2021-05-08 23:55:25','2021-05-08 23:55:25','',3491,'https://dm117.dev34.info/?p=5818',0,'revision','',0),(3493,1,'2020-02-07 02:16:44','2020-02-07 02:16:44','Available Now!\n<h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!</h3>\n<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" width=\"640\" height=\"214\">								</a>\n<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" width=\"640\" height=\"253\">								</a>\n<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" width=\"640\" height=\"213\">								</a>\n<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" width=\"600\" height=\"240\">								</a>\n<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" width=\"580\" height=\"202\">								</a>\n<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" width=\"640\" height=\"246\">								</a>\n<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" width=\"524\" height=\"118\">								</a>\n<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" width=\"594\" height=\"300\">								</a>','Buy The Book','','publish','closed','closed','','buy-the-book','','','2021-05-09 00:18:24','2021-05-09 00:18:24','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3493',0,'page','',0),(5833,1,'2021-05-08 23:58:51','2021-05-08 23:58:51','','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-08 23:58:51','2021-05-08 23:58:51','',3493,'https://dm117.dev34.info/?p=5833',0,'revision','',0),(5824,1,'2021-05-08 23:57:48','2021-05-08 23:57:48','About us                                \n	    <h3 data-wow-delay=\"ms\">\n            We’re a global stakeholder relations and consultancy.\n            </h3>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-08 23:57:48','2021-05-08 23:57:48','',3493,'https://dm117.dev34.info/?p=5824',0,'revision','',0),(5825,1,'2021-05-08 23:58:29','2021-05-08 23:58:29','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>','heading for buy jw','','publish','closed','closed','','heading-for-buy-jw','','','2021-05-08 23:58:30','2021-05-08 23:58:30','',0,'https://dm117.dev34.info/?elementor_library=heading-for-buy-jw',0,'elementor_library','',0),(5826,1,'2021-05-08 23:58:29','2021-05-08 23:58:29','','heading for buy jw','','inherit','closed','closed','','5825-revision-v1','','','2021-05-08 23:58:29','2021-05-08 23:58:29','',5825,'https://dm117.dev34.info/?p=5826',0,'revision','',0),(5827,1,'2021-05-08 23:58:30','2021-05-08 23:58:30','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>','heading for buy jw','','inherit','closed','closed','','5825-revision-v1','','','2021-05-08 23:58:30','2021-05-08 23:58:30','',5825,'https://dm117.dev34.info/?p=5827',0,'revision','',0),(5828,1,'2021-05-08 23:58:45','2021-05-08 23:58:45','<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','retailers heading','','publish','closed','closed','','retailers-heading','','','2021-05-08 23:58:46','2021-05-08 23:58:46','',0,'https://dm117.dev34.info/?elementor_library=retailers-heading',0,'elementor_library','',0),(5829,1,'2021-05-08 23:58:46','2021-05-08 23:58:46','','retailers heading','','inherit','closed','closed','','5828-revision-v1','','','2021-05-08 23:58:46','2021-05-08 23:58:46','',5828,'https://dm117.dev34.info/?p=5829',0,'revision','',0),(5830,1,'2021-05-08 23:58:46','2021-05-08 23:58:46','<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','retailers heading','','inherit','closed','closed','','5828-revision-v1','','','2021-05-08 23:58:46','2021-05-08 23:58:46','',5828,'https://dm117.dev34.info/?p=5830',0,'revision','',0),(3495,1,'2020-02-07 02:16:59','2020-02-07 02:16:59','<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/about4-icon1.png\" alt=\"\" width=\"48\" height=\"43\" />\n<h3>Business Growth</h3>\nThe argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\n\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/about4-icon2.png\" alt=\"\" width=\"44\" height=\"48\" />\n<h3>Strategy Process</h3>\nThe argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\n\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/about4-icon3.png\" alt=\"\" width=\"50\" height=\"46\" />\n<h3>Finance Manage</h3>\nThe argument in favor of using filler text goes some labore et dolore magna aliqua consectetur.\n\nabout us\n<h3>We are here to manage your finance with <i>experience</i></h3>\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/about4-shape1.png\" alt=\"\" width=\"165\" height=\"278\" />\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h4-about1.png\" sizes=\"(max-width: 545px) 100vw, 545px\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h4-about1.png 545w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h4-about1-300x255.png 300w\" alt=\"\" width=\"545\" height=\"464\" />\nFinance\n95%\nBusiness\n90%\nInvestment\n93%\nThe argument in favor of using filler text goes something like this: If you use real content in the <b><u>design process</u></b>, anytime you reach a review point you’ll end up reviewing and negotiating the content itself and not the design.\nAenean tincidunt id mauris id auctor. Donec at ligula lacus. Nulla dignissim mi quis neque interdum, quis porta sem finibus.\nVideo\n<h3>See how we work with\ntouch of <i>experience</i></h3>\n<a href=\"https://www.youtube.com/watch?v=SF4aHwxHtZ0\">\n</a>\nWhy choose us\n<h3>There are many companies\nbut why <i>choose us</i></h3>\nThe argument in favor of using filler text goes something like this: If you use real content in the design process, anytime you reach a review point you’ll end up reviewing and negotiating the content itself.\n<h4>Expert team</h4>\nThe argument in favorite of using filler to text goes some thing like this top\n<h4>Best Finance Brand</h4>\nThe argument in favorite of using filler to text goes some thing like this top\n<h4>Best Leadership Ideas</h4>\nThe argument in favorite of using filler to text goes some thing like this top\n\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','About v.4','','publish','closed','closed','','about-v-4','','','2020-02-07 02:16:59','2020-02-07 02:16:59','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3495',0,'page','',0),(3497,1,'2020-02-07 02:17:36','2020-02-07 02:17:36','Testimonial\n<h3>It’s always a joy to hear that the work we do, has positively reviews.</h3>\nWe have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.\nI asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n<img title=\"testimonial-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-04.jpg\" alt=\"testimonial-04\" width=\"109\" height=\"109\" />\n<h3>Maria Silverii</h3>\nCEO of Blue Illusion\nI asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n<img title=\"testimonial-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05.jpg\" alt=\"testimonial-05\" width=\"109\" height=\"109\" />\n<h3>Phillip Macintyre</h3>\nCEO of Blue Illusion\nI asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n<img title=\"testimonial-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06.jpg\" alt=\"testimonial-06\" width=\"109\" height=\"109\" />\n<h3>Amy Harrison</h3>\nContiki Holidays\nI asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n<img title=\"testimonial-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-04.jpg\" alt=\"testimonial-04\" width=\"109\" height=\"109\" />\n<h3>Maria Silverii</h3>\nCEO of Blue Illusion\nI asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n<img title=\"testimonial-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05.jpg\" alt=\"testimonial-05\" width=\"109\" height=\"109\" />\n<h3>Phillip Macintyre</h3>\nCEO of Blue Illusion\nI asked for an extra customization in Process section and the author made special amendments in the theme live on my website. Customer support is amazing really 24/24.\n<img title=\"testimonial-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06.jpg\" alt=\"testimonial-06\" width=\"109\" height=\"109\" />\n<h3>Amy Harrison</h3>\nContiki Holidays\n<a href=\"https://demo.casethemes.net/consultio-immigration/testimonials/\">\nView more\n</a>\nLike What We Offer\n<h3>DO BUSINESS\nWITH US!</h3>\nIn order to acquire our services please kindly send us your inquiry of interest. We shall revert back\nimmediately.\n<a href=\"https://demo.casethemes.net/consultio-immigration/contact/\">\nContact us\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Testimonials v.2','','publish','closed','closed','','testimonials-v-2','','','2020-02-07 02:17:36','2020-02-07 02:17:36','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3497',0,'page','',0),(3500,1,'2020-02-07 02:17:53','2020-02-07 02:17:53','Testimonial\n<h3>It’s always a joy to hear that the work we do, has positively reviews.</h3>\nWe have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.\n<img title=\"testimonial-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-07.jpg\" alt=\"testimonial-07\" width=\"130\" height=\"130\" />\n<h3>Donald Johnson</h3>\nExecutive Manager\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n“\n<img title=\"testimonial-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-01.jpg\" alt=\"testimonial-01\" width=\"109\" height=\"109\" />\n<h3>Kathleen Smith</h3>\nSEO Manager\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n“\n<img title=\"testimonial-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-09.jpg\" alt=\"testimonial-09\" width=\"130\" height=\"130\" />\n<h3>Jewel D Smith</h3>\nExecutive Manager\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n“\n<img title=\"testimonial-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-04.jpg\" alt=\"testimonial-04\" width=\"109\" height=\"109\" />\n<h3>Brad Smith</h3>\nSEO Manager\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n“\n<a href=\"https://demo.casethemes.net/consultio-immigration/testimonials/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Testimonials v.3','','publish','closed','closed','','testimonials-v-3','','','2020-02-07 02:17:53','2020-02-07 02:17:53','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3500',0,'page','',0),(3502,1,'2020-02-07 02:18:13','2020-02-07 02:18:13','Testimonial\n<h3>It’s always a joy to hear that the work we do, has positively reviews.</h3>\nWe have spent 9 years working for one of Australia’s most\nrecognised and successful retailers so we have many good\nreview of works.\n<img title=\"testimonial-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-07.jpg\" alt=\"testimonial-07\" width=\"130\" height=\"130\" />\n<h3>Donald Johnson</h3>\nExecutive Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-01.jpg\" alt=\"testimonial-01\" width=\"109\" height=\"109\" />\n<h3>Kathleen Smith</h3>\nSEO Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/testimonial-09.jpg\" alt=\"testimonial-09\" width=\"130\" height=\"130\" />\n<h3>Jewel D Smith</h3>\nExecutive Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<img title=\"testimonial-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-04.jpg\" alt=\"testimonial-04\" width=\"109\" height=\"109\" />\n<h3>Brad Smith</h3>\nSEO Manager\n“\nI had the pleasure of working with Consultio as part of a\n6 month ‘Regional Retail Leadership Program’. Her passion for leadership development is evident to help others.\n<a href=\"https://demo.casethemes.net/consultio-immigration/testimonials/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Testimonials v.4','','publish','closed','closed','','testimonials-v-4','','','2020-02-07 02:18:13','2020-02-07 02:18:13','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3502',0,'page','',0),(3504,1,'2020-02-07 02:18:35','2020-02-07 02:18:35','Pricing\n<h3>We offer the best price for you! <i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n</i></h3>\nPricing is the process whereby a business sets the price at which it will sell its products and services, and may be part of the\nbusiness\'s marketing plan.\nMonthly\nYearly Save 20%\n\n<style>.elementor-3876 .elementor-element.elementor-element-33a40038{margin-top:0px;margin-bottom:0px;}.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2{background-color:#000000;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-4d68f4b4 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3876 .elementor-element.elementor-element-4b28e043 > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-3876 .elementor-element.elementor-element-5f276f89 > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3876 .elementor-element.elementor-element-8a7b665 > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3876 .elementor-element.elementor-element-f582dc4 > .elementor-element-populated{margin:39px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-3876 .elementor-element.elementor-element-5f276f89{width:50%;}.elementor-3876 .elementor-element.elementor-element-8a7b665{width:50%;}.elementor-3876 .elementor-element.elementor-element-f582dc4{width:50%;}.elementor-3876 .elementor-element.elementor-element-4b28e043{width:50%;}}</style>\n\n<section data-id=\"33a40038\" data-element_type=\"section\">\n<h3>New Business</h3>\n1-4 Employees\n$99\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>\n<a href=\"#\">Try now</a>\nBest choice\n<h3>Small Business</h3>\n5-19 Employees\n$199\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>\n<a href=\"#\">Try now</a>\n<h3>Growing Business</h3>\n20-39 Employees\n$299\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>\n<a href=\"#\">Try now</a>\n<h3>Large Business</h3>\nUnlimited Employees\n$399\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>\n<a href=\"#\">Try now</a>\n\n</section><style>.elementor-3872 .elementor-element.elementor-element-7f5cbd63{margin-top:0px;margin-bottom:0px;}.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2{background-color:#000000;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-title{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-description{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-price{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-2a9c5d45 .ct-pricing-layout2 .pricing-feature{color:#FFFFFF;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:0px 0px 40px 0px;}.elementor-3872 .elementor-element.elementor-element-12576590 > .elementor-element-populated{margin:0px 0px 40px 0px;}@media(max-width:767px){.elementor-3872 .elementor-element.elementor-element-43484ebe > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee > .elementor-element-populated{margin:0px 0px 0px 0px;}.elementor-3872 .elementor-element.elementor-element-609a9e8e > .elementor-element-populated{margin:39px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-3872 .elementor-element.elementor-element-43484ebe{width:50%;}.elementor-3872 .elementor-element.elementor-element-5ae0ebee{width:50%;}.elementor-3872 .elementor-element.elementor-element-609a9e8e{width:50%;}.elementor-3872 .elementor-element.elementor-element-12576590{width:50%;}}</style>\n\n<section data-id=\"7f5cbd63\" data-element_type=\"section\">\n<h3>New Business</h3>\n1-4 Employees\n$499\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>\n<a href=\"#\">Try now</a>\nBest choice\n<h3>Small Business</h3>\n5-19 Employees\n$599\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$500</cite>\n<a href=\"#\">Try now</a>\n<h3>Growing Business</h3>\n20-39 Employees\n$599\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$1000</cite>\n<a href=\"#\">Try now</a>\n<h3>Large Business</h3>\nUnlimited Employees\n$699\nPlus One-Time Bambee In-Depth HR Audit For: <cite>$1500</cite>\n<a href=\"#\">Try now</a>\n\n</section><a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>','Pricing v.2','','publish','closed','closed','','pricing-v-2','','','2020-02-07 02:18:35','2020-02-07 02:18:35','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3504',0,'page','',0),(3506,1,'2020-02-07 02:18:47','2020-02-07 02:18:47','','Pricing v.3','','publish','closed','closed','','pricing-v-3','','','2020-02-07 02:18:47','2020-02-07 02:18:47','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3506',0,'page','',0),(3508,1,'2020-02-07 02:19:01','2020-02-07 02:19:01','','Pricing v.4','','publish','closed','closed','','pricing-v-4','','','2020-02-07 02:19:01','2020-02-07 02:19:01','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3508',0,'page','',0),(3510,1,'2020-02-07 02:19:20','2020-02-07 02:19:20','<h3>\n                            <i></i>\n                        Get in touch for any kind of help and informations                    \n            </h3>\n		We’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.		\n        <h3>\n            Our head office address:        </h3>\n        3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail us for information        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n<form action=\"/ctthemes/csuti-finance2/wp-admin/admin-ajax.php#wpcf7-f5003-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5003\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.1.9\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5003-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"text\" name=\"first-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"First name *\" />\n<input type=\"text\" name=\"last-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Last name *\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail *\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number *\" />\n<input type=\"text\" name=\"your-web-address\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Web address *\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Services\">Services</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp Business\">StartUp Business</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Send now</button>\n</form>        \n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"London Eye, London, United Kingdom\"></iframe>','Contact v.2','','publish','closed','closed','','contact-v-2','','','2020-02-07 02:19:20','2020-02-07 02:19:20','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3510',0,'page','',0),(3512,1,'2020-02-07 02:19:39','2020-02-07 02:19:39','Contact us\n<h3>If need any info please contact <b>us!</b></h3>\n<h3>Head office address:</h3>\n3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n<h3>Mail for information:</h3>\nnoreply@envato.com\nnoreply@consultio.com\n<h3>Call for help:</h3>\n(734) 697-2907\n(843) 971-1906\nFor any inquiries relating to my Retail and Leadership Programs*\n\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f3823-o1\" method=\"post\" novalidate=\"novalidate\"><input name=\"_wpcf7\" type=\"hidden\" value=\"3823\" />\n<input name=\"_wpcf7_version\" type=\"hidden\" value=\"5.1.6\" />\n<input name=\"_wpcf7_locale\" type=\"hidden\" value=\"en_US\" />\n<input name=\"_wpcf7_unit_tag\" type=\"hidden\" value=\"wpcf7-f3823-o1\" />\n<input name=\"_wpcf7_container_post\" type=\"hidden\" value=\"0\" />\n<label>Name (required)</label><input name=\"your-name\" size=\"40\" type=\"text\" value=\"\" placeholder=\"Your name*\" aria-required=\"true\" aria-invalid=\"false\" />\n<label>Email adress (required)</label><input name=\"your-email\" size=\"40\" type=\"email\" value=\"\" placeholder=\"Mail*\" aria-required=\"true\" aria-invalid=\"false\" />\n<label>Phone (optional)</label><input name=\"your-name\" size=\"40\" type=\"text\" value=\"\" placeholder=\"Phone*\" aria-required=\"true\" aria-invalid=\"false\" />\n<label>Subject (required)</label><select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\">\n<option value=\"Subject*\">Subject*</option>\n<option value=\"Success fullfill\">Success fullfill</option>\n<option value=\"StartUp business\">StartUp business</option>\n<option value=\"Leadership work\">Leadership work</option>\n<option value=\"Business Growth\">Business Growth</option>\n</select>\n<label>Your message</label><textarea cols=\"40\" name=\"your-message\" rows=\"10\" placeholder=\"Type message*\" aria-required=\"true\" aria-invalid=\"false\"></textarea>\n<button type=\"submit\">Send message</button></form><a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Contact v.3','','publish','closed','closed','','contact-v-3','','','2020-02-07 02:19:39','2020-02-07 02:19:39','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3512',0,'page','',0),(569,1,'2019-11-13 04:03:18','2019-11-13 04:03:18','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-12-ohk31sjwzwsdgcc2vcv9c5o32gogew8m8ksnyax7ie.jpg\" title=\"theme-12\" alt=\"theme-12\" />											\n	    <h3>\n        Fund Management    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Fund Management','','publish','closed','closed','','fund-management','','','2019-11-13 04:03:18','2019-11-13 04:03:18','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=569',0,'portfolio','',0),(571,1,'2019-11-13 04:03:41','2019-11-13 04:03:41','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-09-ohk3077rf0lvs4nd6630m24ytyj2dcwzop01ofa81y.jpg\" title=\"theme-09\" alt=\"theme-09\" />											\n	    <h3>\n        Financial Analysis    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Financial Analysis','','publish','closed','closed','','financial-analysis','','','2019-11-13 04:03:41','2019-11-13 04:03:41','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=571',0,'portfolio','',0),(573,1,'2019-11-13 04:04:03','2019-11-13 04:04:03','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-07-ohk318tb0e1coj4r2mc3dsnelddqx9295v3gvhqh52.jpg\" title=\"theme-07\" alt=\"theme-07\" />											\n	    <h3>\n        Market Expansion    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Market Expansion','','publish','closed','closed','','market-expansion','','','2019-11-13 04:04:03','2019-11-13 04:04:03','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=573',0,'portfolio','',0),(575,1,'2019-11-13 04:04:21','2019-11-13 04:04:21','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-06-ohk3144427ux2hbku2ayjbu3mg0wurjlh7u1h3xg06.jpg\" title=\"theme-06\" alt=\"theme-06\" />											\n	    <h3>\n        Revenue Growth    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Revenue Growth','','publish','closed','closed','','revenue-growth','','','2019-11-13 04:04:21','2019-11-13 04:04:21','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=575',0,'portfolio','',0),(577,1,'2019-11-13 04:04:45','2019-11-13 04:04:45','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-05-ohk2zwvjbu7q8f2dujm4cmqwapy10orxz9tpedpjye.jpg\" title=\"theme-05\" alt=\"theme-05\" />											\n	    <h3>\n        Court Imperial    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Court Imperial','','publish','closed','closed','','court-imperial','','','2019-11-13 04:04:45','2019-11-13 04:04:45','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=577',0,'portfolio','',0),(579,1,'2019-11-13 04:05:06','2019-11-13 04:05:06','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-04-ohk2zu20rc3v9l6hb0e8n5giikbxdlgqyvv8yjtqh2.jpg\" title=\"theme-04\" alt=\"theme-04\" />											\n	    <h3>\n        Data Analytics    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2020\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.consultio.com\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Data Analytics','','publish','closed','closed','','data-analytics','','','2019-11-13 04:05:06','2019-11-13 04:05:06','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=579',0,'portfolio','',0),(581,1,'2019-11-13 04:05:24','2019-11-13 04:05:24','Portfolio\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-03-ohk2zyr7piaavmznjkfdhm9thhorg2zenj4ocxmrly.jpg\" alt=\"theme-03\" />\n<h3>Chan Agency</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Chan Agency','','publish','closed','closed','','chan-agency','','','2019-11-13 04:05:24','2019-11-13 04:05:24','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=581',0,'portfolio','',0),(1738,1,'2019-10-03 06:46:11','2019-10-03 06:46:11','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-14-ohk322w5336j01x26zc5ll25lp9hrkdnxzz08chvly.jpg\" title=\"theme-14\" alt=\"theme-14\" />											\n	    <h3>\n        Consumer Products    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Consumer Products','','publish','closed','closed','','consumer-products','','','2019-10-03 06:46:11','2019-10-03 06:46:11','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=1738',0,'portfolio','',0),(1740,1,'2019-11-03 06:46:31','2019-11-03 06:46:31','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-13-ohk31y6y4x03e03vyfb0r48umrwnp2v09cpktyouh2.jpg\" title=\"theme-13\" alt=\"theme-13\" />											\n	    <h3>\n        Business Management    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Business Management','','publish','closed','closed','','business-management','','','2019-11-03 06:46:31','2019-11-03 06:46:31','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=1740',0,'portfolio','',0),(1742,1,'2019-12-03 06:47:59','2019-12-03 06:47:59','Portfolio\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-01-ohk2ziryhbofe9mv4vipt8azdxvit87yxc1f78agjq.jpg\" alt=\"theme-01\" />\n<h3>Business Growth</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Business Growth','','publish','closed','closed','','business-growth','','','2019-12-03 06:47:59','2019-12-03 06:47:59','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=1742',0,'portfolio','',0),(1766,1,'2019-10-03 09:08:01','2019-10-03 09:08:01','Portfolio\n	    <h3>\n        Look how wonderful work we have done!    </h3>\n		At vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos. 		\n										<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-08-ohk3069x86klgioqbnoe1kdi8knp5nt9ckck75bm86.jpg\" title=\"theme-08\" alt=\"theme-08\" />											\n	    <h3>\n        StartUp Business    </h3>\n		Dut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis  seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.		\n			    <ul>\n                    <li>\n                                    <label>Category:</label>\n                                    Strategy\n                            </li>\n                    <li>\n                                    <label>Client:</label>\n                                    Real Madrid C.F\n                            </li>\n                    <li>\n                                    <label>Date:</label>\n                                    24/11/2017\n                            </li>\n                    <li>\n                                    <label>Website:</label>\n                                    www.giorf.esp\n                            </li>\n            </ul>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                            <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                        \n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','StartUp Business','','publish','closed','closed','','startup-business','','','2019-10-03 09:08:01','2019-10-03 09:08:01','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=1766',0,'portfolio','',0),(3514,1,'2020-02-07 02:19:55','2020-02-07 02:19:55','Contact us\n<h3>If need any info please contact <b>us!</b></h3>\nWe’re glad to discuss your organisation’s situation. So please contact us via the details below, or enter your request.\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/contact-v4.png\" sizes=\"(max-width: 538px) 100vw, 538px\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/contact-v4.png 538w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/contact-v4-300x205.png 300w\" alt=\"\" width=\"538\" height=\"368\" />\n\n<form action=\"/ctthemes/csuti/wp-admin/admin-ajax.php#wpcf7-f3851-o1\" method=\"post\" novalidate=\"novalidate\"><input name=\"_wpcf7\" type=\"hidden\" value=\"3851\" />\n<input name=\"_wpcf7_version\" type=\"hidden\" value=\"5.1.6\" />\n<input name=\"_wpcf7_locale\" type=\"hidden\" value=\"en_US\" />\n<input name=\"_wpcf7_unit_tag\" type=\"hidden\" value=\"wpcf7-f3851-o1\" />\n<input name=\"_wpcf7_container_post\" type=\"hidden\" value=\"0\" />\n<input name=\"first-name\" size=\"40\" type=\"text\" value=\"\" placeholder=\"First name *\" aria-required=\"true\" aria-invalid=\"false\" />\n<input name=\"last-name\" size=\"40\" type=\"text\" value=\"\" placeholder=\"Last name *\" aria-required=\"true\" aria-invalid=\"false\" />\n<input name=\"your-email\" size=\"40\" type=\"email\" value=\"\" placeholder=\"Your mail *\" aria-required=\"true\" aria-invalid=\"false\" />\n<input name=\"your-phone\" size=\"40\" type=\"text\" value=\"\" placeholder=\"Phone number *\" aria-required=\"true\" aria-invalid=\"false\" />\n<textarea cols=\"40\" name=\"your-message\" rows=\"10\" placeholder=\"Message...\" aria-required=\"true\" aria-invalid=\"false\"></textarea>\n<button type=\"submit\">Send now</button></form>\n<h3>Our office address:</h3>\n3556 Hartford Way Vlg, Mount of\nPleasant, SC, 29466, Australia.\n<h3>Mail us:</h3>\nnoreply@envato.com\nnoreply@company.com\n<h3>Call for help:</h3>\n(734) 697-2907\n(843) 971-1906\n\n<iframe src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" aria-label=\"London Eye, London, United Kingdom\"></iframe>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Contact v.4','','publish','closed','closed','','contact-v-4','','','2020-02-07 02:19:55','2020-02-07 02:19:55','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3514',0,'page','',0),(3516,1,'2020-02-07 02:20:53','2020-02-07 02:20:53','Team member\n<h3><i></i>\nOur expert team members</h3>\n&nbsp;\n<h3>Iven Rocky</h3>\nSenior Web Developer\nWordPress\n90%\nJava\n50%\nCss\n70%\n<h3>Rebecca Leo</h3>\nWeb Designer\nPhotoshop\n90%\nSketch\n80%\nCss\n70%\n<h3>Adam Ivan</h3>\nChef Advisor\nBusiness Sense\n90%\nCleanliness\n80%\nCreativity\n70%\n<h3>Obira Franc</h3>\nTax Consultant\nNegotiation\n90%\nTax law\n50%\nOrganisation\n70%\n\n<a href=\"https://demo.casethemes.net/consultio-immigration/team/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Team v.2','','publish','closed','closed','','team-v-2','','','2020-02-07 02:20:53','2020-02-07 02:20:53','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3516',0,'page','',0),(3518,1,'2020-02-07 02:21:09','2020-02-07 02:21:09','Team member\n<h3>We always work with a great team. <i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n<i></i>\n</i></h3>\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"team-single\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/team-single-360x360.jpg\" alt=\"team-single\" width=\"360\" height=\"360\" />\n<h3>Fran Bostick</h3>\nFounder &amp; CEO\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team2\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team2-360x360.jpg\" alt=\"h6-team2\" width=\"360\" height=\"360\" />\n<h3>Tina Holt</h3>\nFederal Contractor\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team3\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team3-360x360.jpg\" alt=\"h6-team3\" width=\"360\" height=\"360\" />\n<h3>Charles Wilkinson</h3>\nFounder &amp; CEO\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team4\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team4-360x360.jpg\" alt=\"h6-team4\" width=\"360\" height=\"360\" />\n<h3>Michael Alan Tate</h3>\nVice President\nHe has extensive experience in\norganizational design, business process reengineering.\n<img title=\"h6-team1\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team1.jpg\" alt=\"h6-team1\" width=\"350\" height=\"350\" />\n<h3>Suzanne Higgins</h3>\nSenior Consultant\n<a href=\"https://demo.casethemes.net/consultio-immigration/team/\">\nView more\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Team v.3','','publish','closed','closed','','team-v-3','','','2020-02-07 02:21:09','2020-02-07 02:21:09','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3518',0,'page','',0),(3520,1,'2020-02-07 02:21:23','2020-02-07 02:21:23','<h3>\n                            <i></i>\n                        Many organizations realize the benefits of forming work teams.                    \n    </h3>\n	Employees need to realize the importance of working well with their teammates when coming into a new job or an existing one. A team player is more valuable.\n                                <a ><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-team-01.jpg\" width=\"267\" height=\"352\" alt=\"home-team-01\" title=\"home-team-01\" /></a>\n                                <h3>    \n                                    <a >Gwen Johnson</a>\n                                </h3>\n                                Founder &amp; CEO\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-team-02.jpg\" width=\"267\" height=\"352\" alt=\"home-team-02\" title=\"home-team-02\" /></a>\n                                <h3>    \n                                    <a >Thomas Olsen</a>\n                                </h3>\n                                Regional Leader\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-team-03.jpg\" width=\"267\" height=\"352\" alt=\"home-team-03\" title=\"home-team-03\" /></a>\n                                <h3>    \n                                    <a >Manny Maceda</a>\n                                </h3>\n                                Managing Partner\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/home-team-04.jpg\" width=\"267\" height=\"352\" alt=\"home-team-04\" title=\"home-team-04\" /></a>\n                                <h3>    \n                                    <a >James Allen</a>\n                                </h3>\n                                Chief Executive\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team1-267x350.jpg\" width=\"267\" height=\"350\" alt=\"h6-team1\" title=\"h6-team1\" /></a>\n                                <h3>    \n                                    <a >Manny Maceda</a>\n                                </h3>\n                                Managing Partner\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team2-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team2\" title=\"h6-team2\" /></a>\n                                <h3>    \n                                    <a >Gwen Johnson</a>\n                                </h3>\n                                Founder &amp; CEO\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team3-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team3\" title=\"h6-team3\" /></a>\n                                <h3>    \n                                    <a >Thomas Olsen</a>\n                                </h3>\n                                Regional Leader\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a ><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/02/h6-team4-267x352.jpg\" width=\"267\" height=\"352\" alt=\"h6-team4\" title=\"h6-team4\" /></a>\n                                <h3>    \n                                    <a >James Allen</a>\n                                </h3>\n                                Chief Executive\n                                <ul>\n                                                                                <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"#\"></a>\n                                            </li>\n                                                                                    <li>\n                                                <a href=\"\"></a>\n                                            </li>\n                                                                        </ul>\n                                <a href=\"#\"  ><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"  ><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Team v.4','','publish','closed','closed','','team-v-4','','','2020-02-07 02:21:23','2020-02-07 02:21:23','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=3520',0,'page','',0),(4355,1,'2020-03-27 02:50:37','2020-03-27 02:50:37','<h3>\n                            <i></i>\n                        Our client, global analytical techno company, wanted to build market.                    \n    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/financial-analysis/\">+</a>\n                Load more            \n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid 2 Columns','','publish','closed','closed','','portfolio-grid-2-columns','','','2020-03-27 02:50:37','2020-03-27 02:50:37','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=4355',0,'page','',0),(4357,1,'2020-03-27 02:50:54','2020-03-27 02:50:54','<h3>\n                            <i></i>\n                        Our client, global analytical techno company, wanted to build market.                    \n    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>\n                Load more            \n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid 3 Columns','','publish','closed','closed','','portfolio-grid-3-columns','','','2020-03-27 02:50:54','2020-03-27 02:50:54','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=4357',0,'page','',0),(4359,1,'2020-03-27 02:51:12','2020-03-27 02:51:12','<h3>\n                            <i></i>\n                        Our client, global analytical techno company, wanted to build market.                    \n    </h3>\n		<p>In this context, our approach was to build trusted and strategic relationships within key sectors, with the goal of advancing health, trade and business outcomes.</p>		\n            All\n                    Coaching                \n                    Facilitation                \n                    Stakeholder relations                \n                    Strategy                \n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-01\" title=\"theme-01\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-02\" title=\"theme-02\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-03\" title=\"theme-03\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-04\" title=\"theme-04\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-05\" title=\"theme-05\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-06\" title=\"theme-06\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-07\" title=\"theme-07\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/market-expansion/\">Market Expansion</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/market-expansion/\">+</a>\n                                <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-600x589.jpg\" width=\"600\" height=\"589\" alt=\"theme-09\" title=\"theme-09\" />                            \n                                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/financial-analysis/\">Financial Analysis</a></h3>\n                                        <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>                                    \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/financial-analysis/\">+</a>\n                Load more            \n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Portfolio Grid 4 Columns Wide','','publish','closed','closed','','portfolio-grid-4-columns-wide','','','2020-03-27 02:51:12','2020-03-27 02:51:12','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=4359',0,'page','',0),(5147,1,'2020-07-25 08:11:51','2020-07-25 08:11:51','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n        <h3>\n            Get Settled        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Learn English        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Find Work        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Creativity        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n    	<img width=\"469\" height=\"388\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/banner-01.jpg\" alt=\"\" loading=\"lazy\" />    	    		15\n    					1\n    					+\n    					Satisfied Clients    				\n    <h3>Golden years we’ve passed!</h3>\n            We are consultio                            \n	    <h3>\n                        Single-minded focus &amp; hard work lead to desired job in just one year                    \n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n            Services                                        \n	    <h3>\n                        The fields on which we give servies                    \n            </h3>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/women-01.png\" alt=\"\" loading=\"lazy\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n            Countries                                        \n	    <h3>\n                        Immigration &amp; Visa are allowed some Countries                    \n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/section-map.png\" alt=\"\" loading=\"lazy\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n            Courses                                        \n	    <h3>\n                        We take some courses to make immigration easier                    \n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                                                            <h3>TOEFL</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>IELTS</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Spoken English</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/spoken-english/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/spoken-english/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Take IELTS</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Skills Exam</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">\n                                    Read more                                    \n                                </a>\n            Get in touch                            \n	    <h3>\n                        Don’t hasitate to contact with us for inquries!                    \n            </h3>\n<form action=\"/consultio-immigration/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n            Testimonials                                        \n	    <h3>\n                        We recieve the best client’s review.                    \n            </h3>\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n            Latest Blog                                        \n	    <h3>\n                        Know something more from our latest blog!                    \n            </h3>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home Onepage','','publish','closed','closed','','home-onepage','','','2020-07-25 08:11:51','2020-07-25 08:11:51','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=5147',0,'page','',0),(5348,1,'2020-10-02 01:50:32','2020-10-02 01:50:32','','Appionment','','publish','closed','closed','','appionment','','','2020-10-02 01:50:32','2020-10-02 01:50:32','',0,'https://demo.casethemes.net/consultio-immigration/?page_id=5348',0,'page','',0),(156,1,'2019-11-05 02:30:46','2019-11-05 02:30:46','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"full\" columns=\"2\" link=\"file\" ids=\"1556,1557\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Reasons to explan fast business builder.','As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.','publish','open','open','','reasons-to-explan-fast-business-builder','','','2019-11-05 02:30:46','2019-11-05 02:30:46','',0,'https://demo.casethemes.net/consultio-immigration/?p=156',0,'post','',2),(159,1,'2019-11-05 02:32:05','2019-11-05 02:32:05','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"full\" columns=\"2\" link=\"file\" ids=\"1556,1557\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','How to go about intiating an start-up.','As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.','publish','open','open','','how-to-go-about-intiating-an-start-up','','','2019-11-05 02:32:05','2019-11-05 02:32:05','',0,'https://demo.casethemes.net/consultio-immigration/?p=159',0,'post','',2),(161,1,'2019-11-05 02:32:39','2019-11-05 02:32:39','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery columns=\"2\" link=\"file\" size=\"full\" ids=\"1557,1556\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','You can use it for any kind website like.','As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.','publish','open','open','','you-can-use-it-for-any-kind-website-like','','','2019-11-05 02:32:39','2019-11-05 02:32:39','',0,'https://demo.casethemes.net/consultio-immigration/?p=161',0,'post','',3),(164,1,'2019-11-05 02:33:27','2019-11-05 02:33:27','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"full\" columns=\"2\" link=\"file\" ids=\"1556,1557\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Why You’ll Never Succeed at 7 Habits.','As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.','publish','open','open','','why-youll-never-succeed-at-7-habits-of-highly','','','2019-11-05 02:33:27','2019-11-05 02:33:27','',0,'https://demo.casethemes.net/consultio-immigration/?p=164',0,'post','',2),(166,1,'2019-11-05 02:33:58','2019-11-05 02:33:58','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"full\" columns=\"2\" link=\"file\" ids=\"1556,1557\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','How Stay Calm from the First Time.','As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.','publish','open','open','','how-stay-calm-from-the-first-time','','','2019-11-05 02:33:58','2019-11-05 02:33:58','',0,'https://demo.casethemes.net/consultio-immigration/?p=166',0,'post','',2),(169,1,'2018-11-04 02:43:57','2018-11-04 02:43:57','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum The man, who is in a stable condition in hospital, has \"potentially life-changing injuries\" after the overnight attack in Garvagh, County Lono donderry. He was shot in the arms and legs.\"What sort of men would think it is accepttable to sub ject a young girl to this level of brutality and violence?\n\n\"Every child has the right to feel safe and protected in their own home - how is this poor child going to sleep tonight or in coming nights? What are the long term effects on her going to be?\"\n<h3 class=\"single-title\">Content without backward-compatible data.</h3>\nTheir community. I wonder how they wou if their own child witnessed such a level of violence?\n\n\"There is absolutely no justification for an attack like this in our communities and we must all work together to bring those responsible to justice and to stop this from happening to another child.\"\n\nEarlier this month, <u>the PSNI launched a hard-hitting advertisement campaign aimed at changing</u> public attitudes to paramilitary attacks.\n\n[gallery size=\"full\" columns=\"2\" link=\"file\" ids=\"1556,1557\"]\n<h3 class=\"single-title\">A Kentucky woman who was accused last year.</h3>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote.\n<blockquote>“What sort of men would think it is acceptable to subject a girl to this level of brutality and violence? an attack like thiop.”<cite>Neil Borton</cite></blockquote>\nThe intruders chased the girl in the house and threatened her when she hid from them, according to the PSNI Limavady Facebook page.\n\n\"She came out petrified with her Piggy Bank, HER PIGGY BANK! hoping that the men would take it and leave her dad alone,\" one outraged officer wrote. especially in capital projects and the suppliers and consultants that work for you know the value of a customer like that. As a consultant executing two projects for a large multinational, I realise how very difficult it sometimes can be on the receiving.','Blackpool polices hunt for David.','As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.','publish','open','open','','blackpool-polices-hunt-for-david','','','2018-11-04 02:43:57','2018-11-04 02:43:57','',0,'https://demo.casethemes.net/consultio-immigration/?p=169',0,'post','',2),(583,1,'2019-12-17 04:05:46','2019-12-17 04:05:46','Portfolio\n<h3>Look how wonderful work we have done!</h3>\nAt vero eos et accusamus et iusto odio digni goiku\nssimos ducimus qui blanditiis praese. Ntium voluum deleniti atque corrupti quos.\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/elementor/thumbs/theme-01-ohk2ziryhbofe9mv4vipt8azdxvit87yxc1f78agjq.jpg\" alt=\"theme-01\" />\n<h3>Digital Analysis</h3>\nDut perspiciatis unde omnis iste natus error sit voluptatems accusantium doloremqu laudan\ntiums ut, totams se aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae duis autems vell eums iriure dolors in hendrerit saep.Eveniet in vulputate velit esse molestie cons to\nequat, vel illum dolore eu feugiat nulla facilisis seds eros sed et accumsan et iusto odio dignis\nsim. Temporibus autem.\n<ul>\n 	<li><label>Category:</label>\nStrategy</li>\n 	<li><label>Client:</label>\nReal Madrid C.F</li>\n 	<li><label>Date:</label>\n24/11/2017</li>\n 	<li><label>Website:</label>\nwww.giorf.esp</li>\n</ul>\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-600x589.jpg\" alt=\"theme-01\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">Business Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/business-growth/\">+</a>\n<img title=\"theme-02\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-02-600x589.jpg\" alt=\"theme-02\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">Digital Analysis</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/digital-analysis/\">+</a>\n<img title=\"theme-03\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-03-600x589.jpg\" alt=\"theme-03\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">Chan Agency</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/coaching/\" rel=\"tag\">Coaching</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/chan-agency/\">+</a>\n<img title=\"theme-04\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-04-600x589.jpg\" alt=\"theme-04\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">Data Analytics</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/strategy/\" rel=\"tag\">Strategy</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/data-analytics/\">+</a>\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-600x589.jpg\" alt=\"theme-05\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">Court Imperial</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/facilitation/\" rel=\"tag\">Facilitation</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/court-imperial/\">+</a>\n<img title=\"theme-06\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-06-600x589.jpg\" alt=\"theme-06\" width=\"600\" height=\"589\" />\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">Revenue Growth</a></h3>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio-category/stakeholder-relations/\" rel=\"tag\">Stakeholder relations</a>\n<a href=\"https://demo.casethemes.net/consultio-immigration/portfolio/revenue-growth/\">+</a>','Finance Strategy','','publish','closed','closed','','finance-strategy','','','2019-12-17 04:05:46','2019-12-17 04:05:46','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=portfolio&amp;p=583',0,'portfolio','',0),(758,1,'2019-11-15 07:21:52','2019-11-15 07:21:52','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','White Tailored Blazer','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','white-tailored-blazer','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=758',0,'product','',0),(771,1,'2019-11-15 07:24:28','2019-11-15 07:24:28','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Light Blue Shirt','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','light-blue-shirt','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=771',0,'product','',0),(772,1,'2019-11-15 07:24:52','2019-11-15 07:24:52','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Pure Silk Black Tie','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','pure-silk-black-tie','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=772',0,'product','',0),(773,1,'2019-11-15 07:25:28','2019-11-15 07:25:28','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Slim Fit Bright Blue','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','slim-fit-bright-blue','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=773',0,'product','',0),(774,1,'2019-11-15 07:29:26','2019-11-15 07:29:26','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Flat Shoes','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','flat-shoes','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=774',0,'product','',0),(775,1,'2019-11-15 07:29:51','2019-11-15 07:29:51','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Monochrome Cami','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','monochrome-cami','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=775',0,'product','',0),(776,1,'2019-11-15 07:30:48','2019-11-15 07:30:48','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Chelsea Boots','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','chelsea-boots','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=776',0,'product','',0),(777,1,'2019-11-15 07:31:15','2019-11-15 07:31:15','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Cami Skater Front','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','cami-skater-front','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=777',0,'product','',0),(778,1,'2019-11-15 07:31:40','2019-11-15 07:31:40','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Black Suit','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','black-suit','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=778',0,'product','',2),(780,1,'2019-11-15 07:32:14','2019-11-15 07:32:14','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Black Shoes','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','black-shoes','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=780',0,'product','',0),(781,1,'2019-11-15 07:32:34','2019-11-15 07:32:34','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Black Dress','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','black-dress','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=781',0,'product','',0),(782,1,'2019-11-15 07:32:55','2019-11-15 07:32:55','Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem.','Black Blazer','A collection of textile samples lay spread out on the table - Samsa was travelling salesman - and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy.','publish','open','closed','','black-blazer','','','2021-04-03 20:22:16','2021-04-03 20:22:16','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=product&amp;p=782',0,'product','',0),(4931,1,'2020-02-12 03:26:05','2020-02-12 03:26:05','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning-2/\">Business Planning</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/brand-package/\">Brand &amp; Package</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/web-desiging/\">Web Desiging</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/website-designing/\">Website Designing</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/lifetime-updates/\">Lifetime Updates</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/no-coding-skills/\">No Coding Skills</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/global-insights/\">Global Insights</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/insurance-service/\">Insurance Service</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /> </a>\n<a href=\"#\">\n<img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /> </a>','SEO Optimization','','publish','closed','closed','','seo-optimization','','','2020-02-12 03:26:05','2020-02-12 03:26:05','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=4931',0,'service','',0),(91,1,'2019-11-01 08:53:47','2019-11-01 08:53:47','<div class=\"input-filled\">[text* your-name placeholder \"Your name*\"]</div>\n<div class=\"input-filled\">[email* your-email placeholder \"Your mail*\"]</div>\n<div class=\"input-filled\">[text* your-phone placeholder \"Phone*\"]</div>\n<div class=\"input-filled\">[select* your-subject \"Subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n<div class=\"input-filled\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-check-circle space-right\"></i>Consult today</button></div>\n1\nConsultio \"[your-subject]\"\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-immigration)\nReply-To: [your-email]\n\n\n\n1\nConsultio \"[your-subject]\"\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-immigration)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Main Contact Form','','publish','closed','closed','','contact-form-1','','','2019-11-01 08:53:47','2019-11-01 08:53:47','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=wpcf7_contact_form&amp;p=91',0,'wpcf7_contact_form','',0),(446,1,'2020-03-11 09:21:33','2020-03-11 09:21:33','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Local Visa','','publish','closed','closed','','local-visa','','','2020-03-11 09:21:33','2020-03-11 09:21:33','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=446',0,'service','',0),(448,1,'2020-03-11 09:22:21','2020-03-11 09:22:21','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Immigrant Visas','','publish','closed','closed','','immigrant-visas','','','2020-03-11 09:22:21','2020-03-11 09:22:21','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=448',0,'service','',0),(645,1,'2020-02-13 07:57:41','2020-02-13 07:57:41','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Insurance Services','','publish','closed','closed','','insurance-services','','','2020-02-13 07:57:41','2020-02-13 07:57:41','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=645',0,'service','',0),(647,1,'2020-02-13 07:58:38','2020-02-13 07:58:38','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Financial Services','','publish','closed','closed','','financial-services','','','2020-02-13 07:58:38','2020-02-13 07:58:38','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=647',0,'service','',0),(649,1,'2020-02-13 07:59:06','2020-02-13 07:59:06','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Business Visa','','publish','closed','closed','','business-visa','','','2020-02-13 07:59:06','2020-02-13 07:59:06','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=649',0,'service','',0),(651,1,'2020-02-13 08:00:23','2020-02-13 08:00:23','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Tourist Visa','','publish','closed','closed','','tourist-visa','','','2020-02-13 08:00:23','2020-02-13 08:00:23','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=651',0,'service','',0),(1615,1,'2019-12-02 09:04:21','2019-12-02 09:04:21','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>First name*</label>[text* your-name placeholder \"Type your first name\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Last name*</label>[text* your-name placeholder \"Type your last name\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Select a subject to get help*</label>[select* your-subject \"Select a subject\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Your mail address*</label>[email* your-email placeholder \"Type mail address\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Message*</label>[textarea* your-message placeholder \"Type message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-cloud-upload-alt space-right\"></i>Submit now</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','FAQ','','publish','closed','closed','','main-contact-form_copy','','','2019-12-02 09:04:21','2019-12-02 09:04:21','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=wpcf7_contact_form&amp;p=1615',0,'wpcf7_contact_form','',0),(2625,1,'2020-03-04 01:25:29','2020-03-04 01:25:29','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/success-fullfill/\">Success fullfill</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/startup-business/\">StartUp Business</a></h3>\nPhotography is the core of everything we do, photography equipment, camera, photography.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/leadership-work/\">Leadership Work</a></h3>\nWhen there is a key element of your organisation that is limiting your people’s to engagement performance.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-growth/\">Business Growth</a></h3>\nWhatever the scenario, we tap into deep networks and innate understanding of each party’s priorities.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/seo-optimization/\">SEO Optimization</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-planning/\">Business Planning</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/program-management/\">Program management</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/chart-management/\">Chart management</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/market-research/\">Market Research</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Student Visa','','publish','closed','closed','','student-visa','','','2020-03-04 01:25:29','2020-03-04 01:25:29','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=2625',0,'service','',0),(2627,1,'2020-03-04 01:26:57','2020-03-04 01:26:57','<h3>We give the best Services\n<i></i></h3>\nThere are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.\nSed do eiusmod tempor incididunt ut\nLabore et dolore magna aliqua\nUt enim ad minim veniam quis nostrud\n<img title=\"theme-05\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" alt=\"theme-05\" width=\"475\" height=\"600\" />\n<img title=\"theme-01\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" alt=\"theme-01\" width=\"475\" height=\"600\" />\n<img title=\"theme-09\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" alt=\"theme-09\" width=\"475\" height=\"600\" />\n<img title=\"theme-07\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" alt=\"theme-07\" width=\"475\" height=\"600\" />\nPersonal Care\nSuper Support\nGuaranteed\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.\n<h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/web-desiging/\">Web Desiging</a></h3>\nA feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.\n<ul id=\"menu-menu-services\">\n 	<li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-insurance/\">Business Insurance</a></li>\n 	<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/health-insurance/\">Health Insurance</a></li>\n 	<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/life-insurance/\">Life Insurance</a></li>\n 	<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/flood-insurance/\">Flood Insurance</a></li>\n 	<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>\n<h3>Contact</h3>\n<ul>\n 	<li>3111 West Allegheny Avenue\nPennsylvania 19132</li>\n 	<li>1-982-782-5297\n1-982-125-6378</li>\n 	<li>support@consultio.com</li>\n</ul>\n<h3>Brochures</h3>\nView our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.\n<a href=\"#\">\nDownload Brochure\n</a>\n<a href=\"#\">\nCharacteristics\n</a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" width=\"169\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" width=\"143\" height=\"42\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" width=\"166\" height=\"38\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" width=\"170\" height=\"35\" /></a>\n<a href=\"#\"><img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" width=\"196\" height=\"36\" /></a>','Medical Visa','','publish','closed','closed','','medical-visa','','','2020-03-04 01:26:57','2020-03-04 01:26:57','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=2627',0,'service','',0),(3823,1,'2020-02-08 15:20:31','2020-02-08 15:20:31','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Name (required)</label>[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Email adress (required)</label>[email* your-email placeholder \"Mail*\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Phone (optional)</label>[text* your-name placeholder \"Phone*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\"><label>Subject (required)</label>[select* your-subject \"Subject*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\"><label>Your message</label>[textarea* your-message placeholder \"Type message*\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-check-circle space-right\"></i>Send message</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 2','','publish','closed','closed','','faq_copy-3','','','2020-02-08 15:20:31','2020-02-08 15:20:31','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=wpcf7_contact_form&amp;p=3823',0,'wpcf7_contact_form','',0),(3851,1,'2020-02-08 16:16:07','2020-02-08 16:16:07','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-immigration)\nReply-To: [your-email]\n\n\n\n1\nConsultio\nConsultio <casethemes.net@gmail.com>\n[your-email]\nFrom: [first-name] [last-name] <[your-email]>\nName: [first-name] [last-name]\nPhone: [your-phone]\nService: [your-service]\nWeb Address: [your-web-address]\nMessage Body:\n[your-message]\n\n\n-- \nThis e-mail was sent from a contact form on Consultio (https://demo.casethemes.net/consultio-immigration)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 4','','publish','closed','closed','','home-contact-form-1_copy','','','2020-02-08 16:16:07','2020-02-08 16:16:07','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=wpcf7_contact_form&amp;p=3851',0,'wpcf7_contact_form','',0),(4171,1,'2020-03-21 08:22:00','2020-03-21 08:22:00','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\">Business Strategy</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-insurance/\">Business Insurance</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/health-insurance/\">Health Insurance</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/life-insurance/\">Life Insurance</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/flood-insurance/\">Flood Insurance</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Web Desiging','','publish','closed','closed','','web-desiging','','','2020-03-21 08:22:00','2020-03-21 08:22:00','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=4171',0,'service','',0),(4174,1,'2020-03-21 08:23:48','2020-03-21 08:23:48','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\">Business Strategy</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-insurance/\">Business Insurance</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/health-insurance/\">Health Insurance</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/life-insurance/\">Life Insurance</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/flood-insurance/\">Flood Insurance</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Brand & Package','','publish','closed','closed','','brand-package','','','2020-03-21 08:23:48','2020-03-21 08:23:48','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=4174',0,'service','',0),(4177,1,'2020-03-21 08:24:52','2020-03-21 08:24:52','<h3>\n        We give the best Services \n        <i></i>\n    </h3>\n		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet.		\n	            		Sed do eiusmod tempor incididunt ut	            	\n	            		Labore et dolore magna aliqua	            	\n	            		Ut enim ad minim veniam quis nostrud	            	\n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-05\" title=\"theme-05\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-01\" title=\"theme-01\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-09\" title=\"theme-09\" />                    \n                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-07-475x600.jpg\" width=\"475\" height=\"600\" alt=\"theme-07\" title=\"theme-07\" />                    \n                                                            Personal Care        \n                                                            Super Support        \n                                                            Guaranteed        \n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.<br/></p>\n<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo.</p>\n                            <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque lau dantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi archi tecto beatae vitae dicta sunt explicabo voluptatem sequi nesciunt.</p>\n<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia conse\nquuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-strategy/\">Business Strategy</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/brand-package/\">Brand &#038; Package</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n                                                    <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/web-desiging/\">Web Desiging</a></h3>\n                                A feature of great leaders is that they never stop for learning. Mentorship and Coaching for your leaders.                            \n        <ul id=\"menu-menu-services\"><li id=\"menu-item-1819\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-insurance/\">Business Insurance</a></li>\n<li id=\"menu-item-1816\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/health-insurance/\">Health Insurance</a></li>\n<li id=\"menu-item-1817\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/life-insurance/\">Life Insurance</a></li>\n<li id=\"menu-item-1818\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/flood-insurance/\">Flood Insurance</a></li>\n<li id=\"menu-item-1820\"><a href=\"https://demo.casethemes.net/consultio-immigration/service/renters-insurance/\">Renters Insurance</a></li>\n</ul>    \n	    <h3>\n                        Contact                    \n    </h3>\n			    <ul>\n                    <li>\n            	   3111 West Allegheny Avenue\nPennsylvania 19132                \n           </li>\n                    <li>\n            	   1-982-782-5297<br />\n1-982-125-6378                \n           </li>\n                    <li>\n            	   support@consultio.com                \n           </li>\n            </ul>\n	    <h3>\n                        Brochures                    \n    </h3>\n		View our 2020 Medical prospectus of\nbrochure for an easy to read guide on\nall of the services offer.		\n                <a href=\"#\">\n            	                                Download Brochure\n            	</a>\n                <a href=\"#\">\n            	                                Characteristics\n            	</a>\n                                <a href=\"#\"><img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" /></a>\n                                <a href=\"#\"><img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" /></a>','Business Planning','','publish','closed','closed','','business-planning-2','','','2020-03-21 08:24:52','2020-03-21 08:24:52','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=service&amp;p=4177',0,'service','',0),(5806,1,'2021-05-06 23:31:55','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2021-05-06 23:31:55','0000-00-00 00:00:00','',0,'https://dm117.dev34.info/?p=5806',0,'post','',0),(5807,1,'2021-05-06 23:35:32','2021-05-06 23:35:32','<h3>\n            Head office address:        </h3>\n        3556 Hartford Way Vlg, Mount\nPleasant, SC, 29466, Australia.\n        <h3>\n            Call for help:        </h3>\n        (734) 697-2907<br/>\n(843) 971-1906\n        <h3>\n            Mail for information:        </h3>\n        noreply@envato.com<br/>\nnoreply@consultio.com\n										<img width=\"601\" height=\"706\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/contact-about1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/contact-about1.png 601w, https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/contact-about1-255x300.png 255w\" sizes=\"(max-width: 601px) 100vw, 601px\" />											\n	    <h3>\n                        Make a free consultation with our expert team to solve your prolems.                    \n            </h3>\n		For any inquiries relating to my  Retail and Leadership Programs*		\n<form action=\"/ctthemes/csuti-immigration/wp-admin/admin-ajax.php#wpcf7-f91-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"91\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f91-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your mail*\" />\n<input type=\"text\" name=\"your-phone\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone*\" />\n<select name=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Subject\">Subject</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<button type=\"submit\">Consult today</button>\n</form>            \n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"196\" height=\"36\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/12/client-05.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>','Contact','','inherit','closed','closed','','24-revision-v1','','','2021-05-06 23:35:32','2021-05-06 23:35:32','',24,'https://dm117.dev34.info/?p=5807',0,'revision','',0),(5003,1,'2020-06-23 14:15:28','2020-06-23 14:15:28','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* first-name placeholder \"First name *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* last-name placeholder \"Last name *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[email* your-email placeholder \"Your mail *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-phone placeholder \"Phone number *\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-web-address placeholder \"Web address *\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[select* your-service \"Services\" \"Success fullfill\" \"StartUp Business\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn btn-block hover-white\"><i class=\"fac fac-arrow-circle-right space-right\"></i>Send now</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 3','','publish','closed','closed','','contact-version-2_copy','','','2020-06-23 14:15:28','2020-06-23 14:15:28','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=wpcf7_contact_form&amp;p=5003',0,'wpcf7_contact_form','',0),(5005,1,'2020-06-23 14:17:31','2020-06-23 14:17:31','<div class=\"row\">\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Your name*\"]</div>\n	<div class=\"input-filled col-lg-6 col-md-6\">[text* your-name placeholder \"Phone number...\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[select* your-service \"Choose services*\" \"Success fullfill\" \"StartUp business\" \"Leadership work\" \"Business Growth\"]</div>\n</div>\n<div class=\"row\">\n	<div class=\"input-filled col-12\">[textarea* your-message placeholder \"Message...\"]</div>\n	<div class=\"input-filled col-12\"><button type=\"submit\" class=\"wpcf7-submit btn\"><i class=\"fac fac-paper-plane space-right\"></i>Get a Quote</button></div>\n</div>\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\ncasethemes.net@gmail.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\nReply-To: [your-email]\n\n\n\n1\nCstrio \"[your-subject]\"\nCstrio <casethemes.net@gmail.com>\n[your-email]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\nPhone: [your-phone]\n\n-- \nThis e-mail was sent from a contact form on Cstrio (https://demo.casethemes.net/consultio-immigration)\nReply-To: casethemes.net@gmail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Version 1','','publish','closed','closed','','contact-version-2_copy-2','','','2020-06-23 14:17:31','2020-06-23 14:17:31','',0,'https://demo.casethemes.net/consultio-immigration/?post_type=wpcf7_contact_form&amp;p=5005',0,'wpcf7_contact_form','',0),(5600,1,'2021-04-03 20:20:58','2021-04-03 20:20:58',' ','','','publish','closed','closed','','5600','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/5600/',26,'nav_menu_item','',0),(5601,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','FAQs','','publish','closed','closed','','faqs','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/faqs/',29,'nav_menu_item','',0),(5602,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Our Team','','publish','closed','closed','','our-team','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/our-team/',14,'nav_menu_item','',0),(5603,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','About us','','publish','closed','closed','','about-us-2','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/about-us-2/',8,'nav_menu_item','',0),(5604,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Contact us','','publish','closed','closed','','contact-us','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/contact-us/',30,'nav_menu_item','',0),(5605,1,'2021-04-03 20:20:58','2021-04-03 20:20:58',' ','','','publish','closed','closed','','5605','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/5605/',1,'nav_menu_item','',0),(5606,1,'2021-04-03 20:20:58','2021-04-03 20:20:58',' ','','','publish','closed','closed','','5606','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/5606/',2,'nav_menu_item','',0),(5607,1,'2021-04-03 20:20:58','2021-04-03 20:20:58',' ','','','publish','closed','closed','','5607','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/5607/',6,'nav_menu_item','',0),(5608,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Blog','','publish','closed','closed','','blog-2','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/blog-2/',49,'nav_menu_item','',0),(5609,1,'2021-04-03 20:20:58','2021-04-03 20:20:58',' ','','','publish','closed','closed','','5609','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/5609/',55,'nav_menu_item','',0),(5610,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Blog Grid','','publish','closed','closed','','blog-grid','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/blog-grid/',51,'nav_menu_item','',0),(5611,1,'2021-04-03 20:20:58','2021-04-03 20:20:58',' ','','','publish','closed','closed','','5611','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/5611/',50,'nav_menu_item','',0),(5612,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Without Sidebar','','publish','closed','closed','','without-sidebar','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/without-sidebar/',53,'nav_menu_item','',0),(5613,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Right Sidebar','','publish','closed','closed','','right-sidebar','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/right-sidebar/',54,'nav_menu_item','',0),(5614,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Left Sidebar','','publish','closed','closed','','left-sidebar','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/left-sidebar/',52,'nav_menu_item','',0),(5615,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Without Sidebar','','publish','closed','closed','','without-sidebar-2','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/without-sidebar-2/',57,'nav_menu_item','',0),(5616,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Left Sidebar','','publish','closed','closed','','left-sidebar-2','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/left-sidebar-2/',56,'nav_menu_item','',0),(5617,1,'2021-04-03 20:20:58','2021-04-03 20:20:58','','Right Sidebar','','publish','closed','closed','','right-sidebar-2','','','2021-04-03 20:20:58','2021-04-03 20:20:58','',0,'https://dm117.dev34.info/2021/04/03/right-sidebar-2/',58,'nav_menu_item','',0),(5618,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Blog Details','','publish','closed','closed','','blog-details','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/blog-details/',59,'nav_menu_item','',0),(5619,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Right Sidebar','','publish','closed','closed','','right-sidebar-3','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/right-sidebar-3/',62,'nav_menu_item','',0),(5620,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Left Sidebar','','publish','closed','closed','','left-sidebar-3','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/left-sidebar-3/',60,'nav_menu_item','',0),(5621,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Without Sidebar','','publish','closed','closed','','without-sidebar-3','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/without-sidebar-3/',61,'nav_menu_item','',0),(5622,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5622','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5622/',19,'nav_menu_item','',0),(5623,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5623','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5623/',21,'nav_menu_item','',0),(5624,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Services','','publish','closed','closed','','services-2','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/services-2/',2,'nav_menu_item','',0),(5625,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5625','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5625/',47,'nav_menu_item','',0),(5626,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5626','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5626/',42,'nav_menu_item','',0),(5627,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Portfolio','','publish','closed','closed','','portfolio','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/portfolio/',41,'nav_menu_item','',0),(5628,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Services','','publish','closed','closed','','services-3','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/services-3/',3,'nav_menu_item','',0),(5629,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','News','','publish','closed','closed','','news','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/news/',5,'nav_menu_item','',0),(5630,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Projects','','publish','closed','closed','','projects','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/projects/',4,'nav_menu_item','',0),(5631,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Portfolio Details','','publish','closed','closed','','portfolio-details','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/portfolio-details/',48,'nav_menu_item','',0),(5632,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5632','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5632/',40,'nav_menu_item','',0),(5633,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Products','','publish','closed','closed','','products','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/products/',37,'nav_menu_item','',0),(5634,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5634','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5634/',36,'nav_menu_item','',0),(5635,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Wishlist','','publish','closed','closed','','wishlist','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/wishlist/',39,'nav_menu_item','',0),(5636,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Product Details','','publish','closed','closed','','product-details','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/product-details/',38,'nav_menu_item','',0),(5637,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5637','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5637/',2,'nav_menu_item','',0),(5638,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5638','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5638/',3,'nav_menu_item','',0),(5639,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5639','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5639/',4,'nav_menu_item','',0),(5640,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5640','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5640/',1,'nav_menu_item','',0),(5641,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5641','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5641/',5,'nav_menu_item','',0),(5642,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5642','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5642/',20,'nav_menu_item','',0),(5643,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Services','','publish','closed','closed','','services-4','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/services-4/',2,'nav_menu_item','',0),(5644,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','About us','','publish','closed','closed','','about-us-3','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/about-us-3/',9,'nav_menu_item','',0),(5645,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5645','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5645/',30,'nav_menu_item','',0),(5646,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5646','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5646/',27,'nav_menu_item','',0),(5647,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Our Team','','publish','closed','closed','','our-team-2','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/our-team-2/',15,'nav_menu_item','',0),(5648,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5648','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5648/',20,'nav_menu_item','',0),(5649,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5649','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5649/',21,'nav_menu_item','',0),(5650,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5650','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5650/',26,'nav_menu_item','',0),(5651,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Blog','','publish','closed','closed','','blog-3','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/blog-3/',9,'nav_menu_item','',0),(5652,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5652','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5652/',15,'nav_menu_item','',0),(5653,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5653','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5653/',10,'nav_menu_item','',0),(5654,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Left Sidebar','','publish','closed','closed','','left-sidebar-4','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/left-sidebar-4/',12,'nav_menu_item','',0),(5655,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Right Sidebar','','publish','closed','closed','','right-sidebar-4','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/right-sidebar-4/',14,'nav_menu_item','',0),(5656,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Blog Grid','','publish','closed','closed','','blog-grid-2','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/blog-grid-2/',11,'nav_menu_item','',0),(5657,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Left Sidebar','','publish','closed','closed','','left-sidebar-5','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/left-sidebar-5/',16,'nav_menu_item','',0),(5658,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Without Sidebar','','publish','closed','closed','','without-sidebar-4','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/without-sidebar-4/',17,'nav_menu_item','',0),(5659,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Right Sidebar','','publish','closed','closed','','right-sidebar-5','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/right-sidebar-5/',18,'nav_menu_item','',0),(5660,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Without Sidebar','','publish','closed','closed','','without-sidebar-5','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/without-sidebar-5/',13,'nav_menu_item','',0),(5661,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Blog Details','','publish','closed','closed','','blog-details-2','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/blog-details-2/',19,'nav_menu_item','',0),(5662,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Right Sidebar','','publish','closed','closed','','right-sidebar-6','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/right-sidebar-6/',22,'nav_menu_item','',0),(5663,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Without Sidebar','','publish','closed','closed','','without-sidebar-6','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/without-sidebar-6/',21,'nav_menu_item','',0),(5664,1,'2021-04-03 20:20:59','2021-04-03 20:20:59','','Left Sidebar','','publish','closed','closed','','left-sidebar-6','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/left-sidebar-6/',20,'nav_menu_item','',0),(5665,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5665','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5665/',23,'nav_menu_item','',0),(5666,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5666','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5666/',19,'nav_menu_item','',0),(5667,1,'2021-04-03 20:20:59','2021-04-03 20:20:59',' ','','','publish','closed','closed','','5667','','','2021-04-03 20:20:59','2021-04-03 20:20:59','',0,'https://dm117.dev34.info/2021/04/03/5667/',18,'nav_menu_item','',0),(5668,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5668','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5668/',17,'nav_menu_item','',0),(5669,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5669','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5669/',29,'nav_menu_item','',0),(5670,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5670','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5670/',25,'nav_menu_item','',0),(5671,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5671','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5671/',24,'nav_menu_item','',0),(5672,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5672','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5672/',23,'nav_menu_item','',0),(5673,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5673','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5673/',13,'nav_menu_item','',0),(5674,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5674','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5674/',12,'nav_menu_item','',0),(5675,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5675','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5675/',11,'nav_menu_item','',0),(5676,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','About v.1','','publish','closed','closed','','about-v-1','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/about-v-1/',10,'nav_menu_item','',0),(5677,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','Pricing v.1','','publish','closed','closed','','pricing-v-1','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/pricing-v-1/',28,'nav_menu_item','',0),(5678,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','Team v.1','','publish','closed','closed','','team-v-1','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/team-v-1/',16,'nav_menu_item','',0),(5679,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/testimonials-v-1/',22,'nav_menu_item','',0),(5680,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','Contact v.1','','publish','closed','closed','','contact-v-1','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/contact-v-1/',24,'nav_menu_item','',0),(5681,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5681','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5681/',25,'nav_menu_item','',0),(5682,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5682','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5682/',26,'nav_menu_item','',0),(5683,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5683','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5683/',27,'nav_menu_item','',0),(5684,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5684','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5684/',18,'nav_menu_item','',0),(5685,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5685','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5685/',17,'nav_menu_item','',0),(5686,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5686','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5686/',16,'nav_menu_item','',0),(5687,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5687','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5687/',34,'nav_menu_item','',0),(5688,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5688','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5688/',33,'nav_menu_item','',0),(5689,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5689','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5689/',32,'nav_menu_item','',0),(5690,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5690','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5690/',28,'nav_menu_item','',0),(5691,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5691','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5691/',25,'nav_menu_item','',0),(5692,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5692','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5692/',24,'nav_menu_item','',0),(5693,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5693','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5693/',23,'nav_menu_item','',0),(5694,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5694','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5694/',12,'nav_menu_item','',0),(5695,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5695','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5695/',11,'nav_menu_item','',0),(5696,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5696','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5696/',10,'nav_menu_item','',0),(5697,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','About v.1','','publish','closed','closed','','about-v-1-2','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/about-v-1-2/',9,'nav_menu_item','',0),(5698,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','Contact v.1','','publish','closed','closed','','contact-v-1-2','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/contact-v-1-2/',31,'nav_menu_item','',0),(5699,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','Pricing v.1','','publish','closed','closed','','pricing-v-1-2','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/pricing-v-1-2/',27,'nav_menu_item','',0),(5700,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','Team v.1','','publish','closed','closed','','team-v-1-2','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/team-v-1-2/',15,'nav_menu_item','',0),(5701,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','Testimonials v.1','','publish','closed','closed','','testimonials-v-1-2','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/testimonials-v-1-2/',22,'nav_menu_item','',0),(5702,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5702','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5702/',4,'nav_menu_item','',0),(5703,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5703','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5703/',6,'nav_menu_item','',0),(5704,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','4 Columns Wide','','publish','closed','closed','','4-columns-wide','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/4-columns-wide/',46,'nav_menu_item','',0),(5705,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','3 Columns','','publish','closed','closed','','3-columns','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/3-columns/',44,'nav_menu_item','',0),(5706,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','2 Columns','','publish','closed','closed','','2-columns','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/2-columns/',43,'nav_menu_item','',0),(5707,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','4 Columns','','publish','closed','closed','','4-columns','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/4-columns/',45,'nav_menu_item','',0),(5708,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5708','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5708/',32,'nav_menu_item','',0),(5709,1,'2021-04-03 20:21:00','2021-04-03 20:21:00',' ','','','publish','closed','closed','','5709','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/5709/',7,'nav_menu_item','',0),(5710,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','4 Columns Wide','','publish','closed','closed','','4-columns-wide-2','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/4-columns-wide-2/',6,'nav_menu_item','',0),(5711,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','3 Columns','','publish','closed','closed','','3-columns-2','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/3-columns-2/',4,'nav_menu_item','',0),(5712,1,'2021-04-03 20:21:00','2021-04-03 20:21:00','','2 Columns','','publish','closed','closed','','2-columns-2','','','2021-04-03 20:21:00','2021-04-03 20:21:00','',0,'https://dm117.dev34.info/2021/04/03/2-columns-2/',3,'nav_menu_item','',0),(5713,1,'2021-04-03 20:21:01','2021-04-03 20:21:01','','4 Columns','','publish','closed','closed','','4-columns-2','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/4-columns-2/',5,'nav_menu_item','',0),(5714,1,'2021-04-03 20:21:01','2021-04-03 20:21:01','','Portfolio Details','','publish','closed','closed','','portfolio-details-2','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/portfolio-details-2/',8,'nav_menu_item','',0),(5715,1,'2021-04-03 20:21:01','2021-04-03 20:21:01','','Portfolio','','publish','closed','closed','','portfolio-2','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/portfolio-2/',1,'nav_menu_item','',0),(5716,1,'2021-04-03 20:21:01','2021-04-03 20:21:01',' ','','','publish','closed','closed','','5716','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/5716/',2,'nav_menu_item','',0),(5717,1,'2021-04-03 20:21:01','2021-04-03 20:21:01',' ','','','publish','closed','closed','','5717','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/5717/',3,'nav_menu_item','',0),(5718,1,'2021-04-03 20:21:01','2021-04-03 20:21:01',' ','','','publish','closed','closed','','5718','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/5718/',4,'nav_menu_item','',0),(5719,1,'2021-04-03 20:21:01','2021-04-03 20:21:01',' ','','','publish','closed','closed','','5719','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/5719/',5,'nav_menu_item','',0),(5720,1,'2021-04-03 20:21:01','2021-04-03 20:21:01',' ','','','publish','closed','closed','','5720','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/5720/',7,'nav_menu_item','',0),(5721,1,'2021-04-03 20:21:01','2021-04-03 20:21:01',' ','','','publish','closed','closed','','5721','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/5721/',3,'nav_menu_item','',0),(5722,1,'2021-04-03 20:21:01','2021-04-03 20:21:01',' ','','','publish','closed','closed','','5722','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/5722/',6,'nav_menu_item','',0),(5723,1,'2021-04-03 20:21:01','2021-04-03 20:21:01','','Our Services','','publish','closed','closed','','our-services','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/our-services/',14,'nav_menu_item','',0),(5724,1,'2021-04-03 20:21:01','2021-04-03 20:21:01','','Our Services','','publish','closed','closed','','our-services-2','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/our-services-2/',13,'nav_menu_item','',0),(5725,1,'2021-04-03 20:21:01','2021-04-03 20:21:01',' ','','','publish','closed','closed','','5725','','','2021-04-03 20:21:01','2021-04-03 20:21:01','',0,'https://dm117.dev34.info/2021/04/03/5725/',5,'nav_menu_item','',0),(5726,1,'2021-04-03 20:23:45','2021-04-03 20:23:45','','Default Kit','','publish','closed','closed','','default-kit-2','','','2021-04-03 20:23:45','2021-04-03 20:23:45','',0,'https://dm117.dev34.info/?elementor_library=default-kit-2',0,'elementor_library','',0),(5734,1,'2021-04-03 20:41:47','2021-04-03 20:41:47','','itunes 1','','inherit','open','closed','','itunes-1','','','2021-04-03 20:41:47','2021-04-03 20:41:47','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg',0,'attachment','image/jpeg',0),(5735,1,'2021-04-03 20:42:06','2021-04-03 20:42:06','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:42:06','2021-04-03 20:42:06','',9,'https://dm117.dev34.info/?p=5735',0,'revision','',0),(5729,1,'2021-04-03 20:35:19','2021-04-03 20:35:19','','Screen Shot 2021-04-03 at 1.35.09 PM','','inherit','open','closed','','screen-shot-2021-04-03-at-1-35-09-pm','','','2021-04-03 20:35:19','2021-04-03 20:35:19','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png',0,'attachment','image/png',0),(5728,1,'2021-04-03 20:29:16','2021-04-03 20:29:16','','Brown_Howard_700241_cvr-v6.indd','','inherit','open','closed','','brown_howard_700241_cvr-v6-indd','','','2021-04-03 20:29:16','2021-04-03 20:29:16','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg',0,'attachment','image/jpeg',0),(5730,1,'2021-04-03 20:39:41','2021-04-03 20:39:41','','Screen Shot 2021-04-03 at 1.39.41 PM','','inherit','open','closed','','screen-shot-2021-04-03-at-1-39-41-pm','','','2021-04-03 20:39:41','2021-04-03 20:39:41','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png',0,'attachment','image/png',0),(5731,1,'2021-04-03 20:40:31','2021-04-03 20:40:31','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n        <h3>\n            Get Settled        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Learn English        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Find Work        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Creativity        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n    	<img width=\"469\" height=\"388\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/banner-01.jpg\" alt=\"\" loading=\"lazy\" />    	    		15\n    					1\n    					+\n    					Satisfied Clients    				\n    <h3>Golden years we’ve passed!</h3>\n            We are consultio                            \n	    <h3>\n                        Single-minded focus &amp; hard work lead to desired job in just one year                    \n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n            Services                                        \n	    <h3>\n                        The fields on which we give servies                    \n            </h3>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/women-01.png\" alt=\"\" loading=\"lazy\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n            Countries                                        \n	    <h3>\n                        Immigration &amp; Visa are allowed some Countries                    \n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/section-map.png\" alt=\"\" loading=\"lazy\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n            Courses                                        \n	    <h3>\n                        We take some courses to make immigration easier                    \n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                                                            <h3>TOEFL</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>IELTS</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Spoken English</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/spoken-english/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/spoken-english/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Take IELTS</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Skills Exam</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">\n                                    Read more                                    \n                                </a>\n            Get in touch                            \n	    <h3>\n                        Don’t hasitate to contact with us for inquries!                    \n            </h3>\n<form action=\"/ctthemes/csuti-immigration/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n            Testimonials                                        \n	    <h3>\n                        We recieve the best client’s review.                    \n            </h3>\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n            Latest Blog                                        \n	    <h3>\n                        Know something more from our latest blog!                    \n            </h3>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:40:31','2021-04-03 20:40:31','',9,'https://dm117.dev34.info/?p=5731',0,'revision','',0),(5732,1,'2021-04-03 20:40:31','2021-04-03 20:40:31','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n        <h3>\n            Get Settled        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Learn English        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Find Work        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n        <h3>\n            Creativity        </h3>\n        Consultio is a provider of low cost planningin USA.\n                <a href=\"#\">\n                    Get started\n                </a>\n    	<img width=\"469\" height=\"388\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/banner-01.jpg\" alt=\"\" loading=\"lazy\" />    	    		15\n    					1\n    					+\n    					Satisfied Clients    				\n    <h3>Golden years we’ve passed!</h3>\n            We are consultio                            \n	    <h3>\n                        Single-minded focus &amp; hard work lead to desired job in just one year                    \n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n            Services                                        \n	    <h3>\n                        The fields on which we give servies                    \n            </h3>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://demo.casethemes.net/consultio-immigration/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/women-01.png\" alt=\"\" loading=\"lazy\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n            Countries                                        \n	    <h3>\n                        Immigration &amp; Visa are allowed some Countries                    \n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/section-map.png\" alt=\"\" loading=\"lazy\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" loading=\"lazy\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n            Courses                                        \n	    <h3>\n                        We take some courses to make immigration easier                    \n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                                                            <h3>TOEFL</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/toefl/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>IELTS</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/ielts/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Spoken English</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/spoken-english/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/spoken-english/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Take IELTS</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/take-ielts/\">\n                                    Read more                                    \n                                </a>\n                                                            <h3>Skills Exam</h3>\n                                    Unlimited score sharing. Includes a video interview to help you stand out from the crowd.                                \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">+</a>\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/courses/skills-exam/\">\n                                    Read more                                    \n                                </a>\n            Get in touch                            \n	    <h3>\n                        Don’t hasitate to contact with us for inquries!                    \n            </h3>\n<form action=\"/ctthemes/csuti-immigration/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.2.2\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n            Testimonials                                        \n	    <h3>\n                        We recieve the best client’s review.                    \n            </h3>\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-01.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-02.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-03.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/client-04.png\" alt=\"\" loading=\"lazy\" />                                                                    </a>\n            Latest Blog                                        \n	    <h3>\n                        Know something more from our latest blog!                    \n            </h3>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://demo.casethemes.net/consultio-immigration/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://demo.casethemes.net/consultio-immigration/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:40:31','2021-04-03 20:40:31','',9,'https://dm117.dev34.info/?p=5732',0,'revision','',0),(5736,1,'2021-04-03 20:42:06','2021-04-03 20:42:06','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:42:06','2021-04-03 20:42:06','',9,'https://dm117.dev34.info/?p=5736',0,'revision','',0),(5738,1,'2021-04-03 20:43:07','2021-04-03 20:43:07','','Screen Shot 2021-04-03 at 1.43.11 PM','','inherit','open','closed','','screen-shot-2021-04-03-at-1-43-11-pm','','','2021-04-03 20:43:07','2021-04-03 20:43:07','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png',0,'attachment','image/png',0),(5739,1,'2021-04-03 20:43:35','2021-04-03 20:43:35','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:43:35','2021-04-03 20:43:35','',9,'https://dm117.dev34.info/?p=5739',0,'revision','',0),(5740,1,'2021-04-03 20:43:35','2021-04-03 20:43:35','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"216\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-1024x346.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-300x101.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-768x260.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM-600x203.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.39.41-PM.png 1160w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:43:35','2021-04-03 20:43:35','',9,'https://dm117.dev34.info/?p=5740',0,'revision','',0);
INSERT INTO `wpiy_posts` VALUES (5741,1,'2021-04-03 20:43:35','2021-04-03 20:43:35','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:43:35','2021-04-03 20:43:35','',9,'https://dm117.dev34.info/?p=5741',0,'revision','',0),(5742,1,'2021-04-03 20:44:47','2021-04-03 20:44:47','','Screen Shot 2021-04-03 at 1.44.35 PM','','inherit','open','closed','','screen-shot-2021-04-03-at-1-44-35-pm','','','2021-04-03 20:44:47','2021-04-03 20:44:47','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png',0,'attachment','image/png',0),(5743,1,'2021-04-03 20:44:53','2021-04-03 20:44:53','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:44:53','2021-04-03 20:44:53','',9,'https://dm117.dev34.info/?p=5743',0,'revision','',0),(5744,1,'2021-04-03 20:44:53','2021-04-03 20:44:53','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:44:53','2021-04-03 20:44:53','',9,'https://dm117.dev34.info/?p=5744',0,'revision','',0),(5745,1,'2021-04-03 20:44:53','2021-04-03 20:44:53','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n										<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:44:53','2021-04-03 20:44:53','',9,'https://dm117.dev34.info/?p=5745',0,'revision','',0),(5746,1,'2021-04-03 20:45:58','2021-04-03 20:45:58','','Screen Shot 2021-04-03 at 1.45.59 PM','','inherit','open','closed','','screen-shot-2021-04-03-at-1-45-59-pm','','','2021-04-03 20:45:58','2021-04-03 20:45:58','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png',0,'attachment','image/png',0),(5747,1,'2021-04-03 20:46:22','2021-04-03 20:46:22','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n										<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:46:22','2021-04-03 20:46:22','',9,'https://dm117.dev34.info/?p=5747',0,'revision','',0),(5748,1,'2021-04-03 20:46:22','2021-04-03 20:46:22','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"368\" height=\"137\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1-.jpeg 368w, https://dm117.dev34.info/wp-content/uploads/2021/04/itunes-1--300x112.jpeg 300w\" sizes=\"(max-width: 368px) 100vw, 368px\" />								</a>\n										<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:46:22','2021-04-03 20:46:22','',9,'https://dm117.dev34.info/?p=5748',0,'revision','',0),(5749,1,'2021-04-03 20:46:23','2021-04-03 20:46:23','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:46:23','2021-04-03 20:46:23','',9,'https://dm117.dev34.info/?p=5749',0,'revision','',0),(5750,1,'2021-04-03 20:47:21','2021-04-03 20:47:21','','Screen Shot 2021-04-03 at 1.47.26 PM','','inherit','open','closed','','screen-shot-2021-04-03-at-1-47-26-pm','','','2021-04-03 20:47:21','2021-04-03 20:47:21','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png',0,'attachment','image/png',0),(5751,1,'2021-04-03 20:48:39','2021-04-03 20:48:39','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:48:39','2021-04-03 20:48:39','',9,'https://dm117.dev34.info/?p=5751',0,'revision','',0),(5752,1,'2021-04-03 20:48:39','2021-04-03 20:48:39','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM.png 880w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-300x140.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-768x360.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.35.09-PM-600x281.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:48:39','2021-04-03 20:48:39','',9,'https://dm117.dev34.info/?p=5752',0,'revision','',0),(5753,1,'2021-04-03 20:48:39','2021-04-03 20:48:39','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:48:39','2021-04-03 20:48:39','',9,'https://dm117.dev34.info/?p=5753',0,'revision','',0),(5754,1,'2021-04-03 20:49:20','2021-04-03 20:49:20','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:49:20','2021-04-03 20:49:20','',9,'https://dm117.dev34.info/?p=5754',0,'revision','',0),(5755,1,'2021-04-03 20:49:20','2021-04-03 20:49:20','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:49:20','2021-04-03 20:49:20','',9,'https://dm117.dev34.info/?p=5755',0,'revision','',0),(5756,1,'2021-04-03 20:49:20','2021-04-03 20:49:20','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:49:20','2021-04-03 20:49:20','',9,'https://dm117.dev34.info/?p=5756',0,'revision','',0),(5757,1,'2021-04-03 20:50:16','2021-04-03 20:50:16','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:50:16','2021-04-03 20:50:16','',9,'https://dm117.dev34.info/?p=5757',0,'revision','',0),(5758,1,'2021-04-03 20:50:16','2021-04-03 20:50:16','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n    	<img width=\"1338\" height=\"2000\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg\" alt=\"\" />        <h3>100% Never Before Seen Action!</h3>\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:50:16','2021-04-03 20:50:16','',9,'https://dm117.dev34.info/?p=5758',0,'revision','',0),(5759,1,'2021-04-03 20:50:17','2021-04-03 20:50:17','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 20:50:17','2021-04-03 20:50:17','',9,'https://dm117.dev34.info/?p=5759',0,'revision','',0),(5767,1,'2021-04-03 21:21:11','2021-04-03 21:21:11','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                        <h3>    \n                                            Farhan Rio                                        </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                        <h3>    \n                                            Van Hunter                                         </h3>\n                                        Senior Director\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Fred L Smith                                        </h3>\n                                        Leadership Group\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                        <h3>    \n                                            Carolyn Smith                                         </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Kathleen Smith                                         </h3>\n                                        Agent Manager','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:21:11','2021-04-03 21:21:11','',9,'https://dm117.dev34.info/?p=5767',0,'revision','',0),(5763,1,'2021-04-03 21:12:09','2021-04-03 21:12:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:12:09','2021-04-03 21:12:09','',9,'https://dm117.dev34.info/?p=5763',0,'revision','',0),(5761,1,'2021-04-03 21:12:09','2021-04-03 21:12:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:12:09','2021-04-03 21:12:09','',9,'https://dm117.dev34.info/?p=5761',0,'revision','',0),(5762,1,'2021-04-03 21:12:09','2021-04-03 21:12:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        We are consultio                            \n	    <h3 data-wow-delay=\"ms\">\n            Single-minded focus &amp; hard work lead to desired job in just one year\n            </h3>\n		We are now at <b>Consultio Company Limited</b> is proud of the fact that around 3.5 million lives are part of our family. It gives us a sense of immense pleasure, while we realize the\nresponsibility at the same time.		\n	            		<b>Save money</b> – we help protect you from non-compliance issues.	            	\n	            		<b>Grow</b> – you keep your focus on increasing revenue.	            	\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:12:09','2021-04-03 21:12:09','',9,'https://dm117.dev34.info/?p=5762',0,'revision','',0),(5764,1,'2021-04-03 21:17:59','2021-04-03 21:17:59','','Screen Shot 2021-04-03 at 2.17.55 PM','','inherit','open','closed','','screen-shot-2021-04-03-at-2-17-55-pm','','','2021-04-03 21:17:59','2021-04-03 21:17:59','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png',0,'attachment','image/png',0),(5765,1,'2021-04-03 21:21:11','2021-04-03 21:21:11','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:21:11','2021-04-03 21:21:11','',9,'https://dm117.dev34.info/?p=5765',0,'revision','',0),(5766,1,'2021-04-03 21:21:11','2021-04-03 21:21:11','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n                        Services                                        \n	    <h3 data-wow-delay=\"ms\">\n            The fields on which we give servies\n            </h3>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/immigrant-visas/\">Immigrant Visas</a></h3>\n                                    Save up to 10% when you insure your property & autos with company.                                \n                                    <a href=\"https://dm117.dev34.info/service/immigrant-visas/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/local-visa/\">Local Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/local-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/medical-visa/\">Medical Visa</a></h3>\n                                    Help protect lost income, pay for higher education, and cover.                                \n                                    <a href=\"https://dm117.dev34.info/service/medical-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/student-visa/\">Student Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/student-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/tourist-visa/\">Tourist Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/tourist-visa/\">\n                                            Read more                                        \n                                    </a>\n                                                            <h3><a href=\"https://dm117.dev34.info/service/business-visa/\">Business Visa</a></h3>\n                                    Drive down your rates with car insurance discounts and premium reductions.                                \n                                    <a href=\"https://dm117.dev34.info/service/business-visa/\">\n                                            Read more                                        \n                                    </a>\n                Load more            \n            <img width=\"300\" height=\"408\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/women-01.png\" alt=\"\" />\n                    Get  Online Visa  Today!\n                            <h4>Get 20% discount to get By Immigration visa with moneyback guarantee.</h4>\n                <a href=\"https://demo.casethemes.net/consultio-immigration/contact-v-2/\">\n                    Apply now!                </a>\n                        Countries                                        \n	    <h3 data-wow-delay=\"ms\">\n            Immigration &amp; Visa are allowed some Countries\n            </h3>\n	        	<img width=\"773\" height=\"390\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/section-map.png\" alt=\"\" />	        					    \n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-05.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-02.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Great Bend, KS 67530, USA\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-03.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> Vivekanand Colony, Chhindwara, Madhya Pradesh 480001, India\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-04.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> 3556 Hartford Way Vlg, Mount Pleasant, SC, 29466, Australia\n				    		<img width=\"85\" height=\"91\" src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/flag-01.png\" alt=\"\" />				    			\n				    						    			<b>Phone:</b> (+734) 697-2907\n				    						    						    			<b>Email:</b> info@consultio.com\n				    						    						    			<b>Address:</b> North Pennines AONB, United Kingdom\n                        Courses                                        \n	    <h3 data-wow-delay=\"ms\">\n            We take some courses to make immigration easier\n            </h3>\n		If you’re a newcomer to Canada, we can help. ISSofBC provides free immigrant services including settlement support.		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Farhan Rio, </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Van Hunter , </h3>\n                                    Senior Director\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Fred L Smith, </h3>\n                                    Leadership Group\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Carolyn Smith , </h3>\n                                    Agent Manager\n                                        <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05-96x96.jpg\" width=\"96\" height=\"96\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                    Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                \n                                    <h3>Kathleen Smith , </h3>\n                                    Agent Manager\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                            <img width=\"169\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-01.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                            <img width=\"143\" height=\"42\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-02.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                            <img width=\"166\" height=\"38\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-03.png\" alt=\"\" />                                                                    </a>\n                                <a href=\"#\">\n                                    <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                            <img width=\"170\" height=\"35\" src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/client-04.png\" alt=\"\" />                                                                    </a>\n                        Latest Blog                                        \n	    <h3 data-wow-delay=\"ms\">\n            Know something more from our latest blog!\n            </h3>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-10.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">How Stay Calm from the First Time.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-stay-calm-from-the-first-time/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/ud-blog1.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">Why You’ll Never Succeed at 7 Habits.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/why-youll-never-succeed-at-7-habits-of-highly/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-01.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/business/\" rel=\"tag\">Business</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">You can use it for any kind website like.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/you-can-use-it-for-any-kind-website-like/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-13.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">How to go about intiating an start-up.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/how-to-go-about-intiating-an-start-up/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-09.jpg);\"></a>\n                                        05\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/strategy/\" rel=\"tag\">Strategy</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">Reasons to explan fast business builder.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2019/11/05/reasons-to-explan-fast-business-builder/\">\n                                        Read more                                    \n                                </a>\n                            <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\" style=\"background-image: url(https://dm117.dev34.info/wp-content/uploads/2019/11/theme-05.jpg);\"></a>\n                                        04\n                                        Nov\n                                <a href=\"https://dm117.dev34.info/category/creative/\" rel=\"tag\">Creative</a>                            \n                                                <h3><a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">Blackpool polices hunt for David.</a></h3>\n                                As a app web crawler expert, help organizations adjust to the of the internet promoting. Far away, behind the word.                            \n                                <a href=\"https://dm117.dev34.info/2018/11/04/blackpool-polices-hunt-for-david/\">\n                                        Read more                                    \n                                </a>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:21:11','2021-04-03 21:21:11','',9,'https://dm117.dev34.info/?p=5766',0,'revision','',0),(5768,1,'2021-04-03 21:22:40','2021-04-03 21:22:40','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                        <h3>    \n                                            Farhan Rio                                        </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                        <h3>    \n                                            Van Hunter                                         </h3>\n                                        Senior Director\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Fred L Smith                                        </h3>\n                                        Leadership Group\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                        <h3>    \n                                            Carolyn Smith                                         </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Kathleen Smith                                         </h3>\n                                        Agent Manager','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:22:40','2021-04-03 21:22:40','',9,'https://dm117.dev34.info/?p=5768',0,'revision','',0),(5769,1,'2021-04-03 21:22:41','2021-04-03 21:22:41','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                        <h3>    \n                                            Farhan Rio                                        </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                        <h3>    \n                                            Van Hunter                                         </h3>\n                                        Senior Director\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Fred L Smith                                        </h3>\n                                        Leadership Group\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                        <h3>    \n                                            Carolyn Smith                                         </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Kathleen Smith                                         </h3>\n                                        Agent Manager','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:22:41','2021-04-03 21:22:41','',9,'https://dm117.dev34.info/?p=5769',0,'revision','',0),(5770,1,'2021-04-03 21:22:41','2021-04-03 21:22:41','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                        <h3>    \n                                            Farhan Rio                                        </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                        <h3>    \n                                            Van Hunter                                         </h3>\n                                        Senior Director\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Fred L Smith                                        </h3>\n                                        Leadership Group\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                        <h3>    \n                                            Carolyn Smith                                         </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Kathleen Smith                                         </h3>\n                                        Agent Manager','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:22:41','2021-04-03 21:22:41','',9,'https://dm117.dev34.info/?p=5770',0,'revision','',0),(5771,1,'2021-04-03 21:23:55','2021-04-03 21:23:55','','golden thumbsup','','inherit','open','closed','','golden-thumbsup','','','2021-04-03 21:23:55','2021-04-03 21:23:55','',9,'https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup.jpg',0,'attachment','image/jpeg',0),(5776,1,'2021-04-03 21:28:46','2021-04-03 21:28:46','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:28:46','2021-04-03 21:28:46','',9,'https://dm117.dev34.info/?p=5776',0,'revision','',0),(5773,1,'2021-04-03 21:28:35','2021-04-03 21:28:35','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                        <h3>    \n                                            Farhan Rio                                        </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                        <h3>    \n                                            Van Hunter                                         </h3>\n                                        Senior Director\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Fred L Smith                                        </h3>\n                                        Leadership Group\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                        <h3>    \n                                            Carolyn Smith                                         </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Kathleen Smith                                         </h3>\n                                        Agent Manager','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:28:35','2021-04-03 21:28:35','',9,'https://dm117.dev34.info/?p=5773',0,'revision','',0),(5774,1,'2021-04-03 21:28:35','2021-04-03 21:28:35','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Testimonials                                        \n	    <h3 data-wow-delay=\"ms\">\n            We recieve the best client’s review.\n            </h3>\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-02.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-02\" title=\"ud-testimonial-02\" />                                        \n                                        <h3>    \n                                            Farhan Rio                                        </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2020/10/ud-testimonial-03.jpg\" width=\"96\" height=\"96\" alt=\"ud-testimonial-03\" title=\"ud-testimonial-03\" />                                        \n                                        <h3>    \n                                            Van Hunter                                         </h3>\n                                        Senior Director\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-06.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-06\" title=\"testimonial-06\" />                                        \n                                        <h3>    \n                                            Fred L Smith                                        </h3>\n                                        Leadership Group\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/author-02.jpg\" width=\"92\" height=\"92\" alt=\"author-02\" title=\"author-02\" />                                        \n                                        <h3>    \n                                            Carolyn Smith                                         </h3>\n                                        Agent Manager\n                                        Lorem ipsum dolor sit amet, consecte\nsed do eiusmod tempor incididunt utlao\nbore et dolore magna aliqua.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2019/11/testimonial-05.jpg\" width=\"109\" height=\"109\" alt=\"testimonial-05\" title=\"testimonial-05\" />                                        \n                                        <h3>    \n                                            Kathleen Smith                                         </h3>\n                                        Agent Manager','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:28:35','2021-04-03 21:28:35','',9,'https://dm117.dev34.info/?p=5774',0,'revision','',0),(5777,1,'2021-04-03 21:28:46','2021-04-03 21:28:46','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:28:46','2021-04-03 21:28:46','',9,'https://dm117.dev34.info/?p=5777',0,'revision','',0),(5778,1,'2021-04-03 21:28:46','2021-04-03 21:28:46','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:28:46','2021-04-03 21:28:46','',9,'https://dm117.dev34.info/?p=5778',0,'revision','',0),(5779,1,'2021-04-03 21:29:29','2021-04-03 21:29:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:29:29','2021-04-03 21:29:29','',9,'https://dm117.dev34.info/?p=5779',0,'revision','',0),(5780,1,'2021-04-03 21:29:29','2021-04-03 21:29:29','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Get in touch                            \n	    <h3 data-wow-delay=\"ms\">\n            Don’t hasitate to contact with us for inquries!\n            </h3>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f5005-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"5005\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f5005-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Your name*\" />\n<input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone number...\" />\n<select name=\"your-service\" aria-required=\"true\" aria-invalid=\"false\"><option value=\"Choose services*\">Choose services*</option><option value=\"Success fullfill\">Success fullfill</option><option value=\"StartUp business\">StartUp business</option><option value=\"Leadership work\">Leadership work</option><option value=\"Business Growth\">Business Growth</option></select>\n<textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Message...\"></textarea>\n<button type=\"submit\">Get a Quote</button>\n</form>            \n		Our offices are located on the traditional, unceded and occupied territories of the Coast Salish and Sto:lo peoples, including the territories		\n                        <h3>    \n                            24/7 hours customer support                        </h3>\n                        <h3>    \n                            100% money back Guarentee                        </h3>\n            <a href=\"tel:+23 656 523 5052\">\n            </a>\n                <label>Call us for information</label>\n                <a href=\"tel:+23 656 523 5052\">+23 656 523 5052</a>\n            <a href=\"mailto:info@consultio.com\">Mail us</a>\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:29:29','2021-04-03 21:29:29','',9,'https://dm117.dev34.info/?p=5780',0,'revision','',0),(5783,1,'2021-04-03 21:39:00','2021-04-03 21:39:00','','Screen Shot 2021-04-03 at 2.38.27 PM','','inherit','open','closed','','screen-shot-2021-04-03-at-2-38-27-pm','','','2021-04-03 21:39:00','2021-04-03 21:39:00','',0,'https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.38.27-PM.png',0,'attachment','image/png',0),(5784,1,'2021-05-09 00:20:27','2021-04-03 21:41:12','','Home','','publish','closed','closed','','home-2','','','2021-05-09 00:20:27','2021-05-09 00:20:27','',0,'https://dm117.dev34.info/?p=5784',1,'nav_menu_item','',0),(5785,1,'2021-05-09 00:20:27','2021-04-03 21:41:12','','Where to Buy','','publish','closed','closed','','where-to-buy','','','2021-05-09 00:20:27','2021-05-09 00:20:27','',0,'https://dm117.dev34.info/?p=5785',2,'nav_menu_item','',0),(5786,1,'2021-05-09 00:20:27','2021-04-03 21:41:12','','About The Book','','publish','closed','closed','','about-the-book','','','2021-05-09 00:20:27','2021-05-09 00:20:27','',0,'https://dm117.dev34.info/?p=5786',3,'nav_menu_item','',0),(5788,1,'2021-05-09 00:20:27','2021-04-03 21:41:12','','Contact','','publish','closed','closed','','contact-2','','','2021-05-09 00:20:27','2021-05-09 00:20:27','',0,'https://dm117.dev34.info/?p=5788',4,'nav_menu_item','',0),(5789,1,'2021-04-03 21:42:46','2021-04-03 21:42:46','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]\nAvailable Now!\n<h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!</h3>\n<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\">								</a>\n<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nLatest Creation of Howard D. Brown\n<h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre</h3>\nDealers of the Macabre takes you to the backyard of the International Intelligence Community.\n\nDealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.\n\nThese three classic CIA cases have remained a secret until now.\n\nDealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.\n\n<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nPart 1\n<h3 data-wow-delay=\"ms\">\n            The Hong Kong Case</h3>\n<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>\n                        Part 2\n<h3 data-wow-delay=\"ms\">\n            The Plutonium Caper</h3>\n<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nPart 3\n<h3 data-wow-delay=\"ms\">\n            The Last Case</h3>\n<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>\n                        Reviews\n<h3 data-wow-delay=\"ms\">\n            What Readers Are Saying</h3>\nBy far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n<h3>\n                                            Lincoln Jones</h3>\nI\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n<h3>\n                                            Sammantha Hunter</h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:42:46','2021-04-03 21:42:46','',9,'https://dm117.dev34.info/?p=5789',0,'revision','',0),(5790,1,'2021-04-03 21:42:46','2021-04-03 21:42:46','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]\nAvailable Now!\n<h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!</h3>\n<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">								</a>\n<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\">								</a>\n<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nLatest Creation of Howard D. Brown\n<h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre</h3>\nDealers of the Macabre takes you to the backyard of the International Intelligence Community.\n\nDealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.\n\nThese three classic CIA cases have remained a secret until now.\n\nDealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.\n\n<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nPart 1\n<h3 data-wow-delay=\"ms\">\n            The Hong Kong Case</h3>\n<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>\n                        Part 2\n<h3 data-wow-delay=\"ms\">\n            The Plutonium Caper</h3>\n<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\n<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\">\nPart 3\n<h3 data-wow-delay=\"ms\">\n            The Last Case</h3>\n<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>\n                        Reviews\n<h3 data-wow-delay=\"ms\">\n            What Readers Are Saying</h3>\nBy far the best book I\'ve read about government ops they don\'t want you to know about. The most detailed account I\'ve come across. I highly recommend this book.\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n<h3>\n                                            Lincoln Jones</h3>\nI\'ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.\n<img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\">\n<h3>\n                                            Sammantha Hunter</h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:42:46','2021-04-03 21:42:46','',9,'https://dm117.dev34.info/?p=5790',0,'revision','',0),(5866,1,'2021-05-09 00:17:49','2021-05-09 00:17:49','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-05-09 00:17:49','2021-05-09 00:17:49','',9,'https://dm117.dev34.info/?p=5866',0,'revision','',0),(5791,1,'2021-04-03 21:42:47','2021-04-03 21:42:47','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:42:47','2021-04-03 21:42:47','',9,'https://dm117.dev34.info/?p=5791',0,'revision','',0),(5792,1,'2021-04-03 21:43:33','2021-04-03 21:43:33','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:43:33','2021-04-03 21:43:33','',9,'https://dm117.dev34.info/?p=5792',0,'revision','',0),(5793,1,'2021-04-03 21:43:33','2021-04-03 21:43:33','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:43:33','2021-04-03 21:43:33','',9,'https://dm117.dev34.info/?p=5793',0,'revision','',0),(5794,1,'2021-04-03 21:43:33','2021-04-03 21:43:33','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:43:33','2021-04-03 21:43:33','',9,'https://dm117.dev34.info/?p=5794',0,'revision','',0),(5795,1,'2021-04-03 21:46:47','2021-04-03 21:46:47','<a href=\"https://demo.casethemes.net/consultio-immigration/\">            <img width=\"171\" height=\"171\" src=\"https://demo.casethemes.net/consultio-immigration/wp-content/uploads/2019/10/logo-footer.png\" alt=\"\" loading=\"lazy\" />        </a>    		\n	    <h3>\n                        We are <b>Consultio!</b>                    \n            </h3>\n		We work with a passion of taking challenges and creating new ones in advertising sector.		\n	    <h3>\n                        Open Hours:                     \n            </h3>\n		Mon &#8211; Sat: 8 am &#8211; 5 pm,<br />\nSunday: CLOSED		\n	    <h3>\n                        Newsletter                    \n            </h3>\n		Subscribe our newsletter to get our latest update &#038; news		\n	    <!-- Mailchimp for WordPress v4.8.1 - https://wordpress.org/plugins/mailchimp-for-wp/ --><form id=\"mc4wp-form-1\" method=\"post\" data-id=\"4680\" data-name=\"Form 1\" >\n 		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your mail address\" required />\n		<input type=\"submit\" value=\"Subscribe\" />\n<label style=\"display: none !important;\">Leave this field empty if you\'re human: <input type=\"text\" name=\"_mc4wp_honeypot\" value=\"\" tabindex=\"-1\" autocomplete=\"off\" /></label><input type=\"hidden\" name=\"_mc4wp_timestamp\" value=\"1601880564\" /><input type=\"hidden\" name=\"_mc4wp_form_id\" value=\"4680\" /><input type=\"hidden\" name=\"_mc4wp_form_element_id\" value=\"mc4wp-form-1\" /></form><!-- / Mailchimp for WordPress Plugin -->    \n                                    <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n                                                <a href=\"#\">\n                                                        </a>\n	    <h3>\n                        Official info:                    \n            </h3>\n			    <ul>\n                    <li>\n                       30 Commercial Road<br /> Fratton, Australia                    \n                           </li>\n                    <li>\n                       1-888-452-1505                    \n                           </li>\n                    <li>\n                       envato@gmail.com<br />\ninfo@mail.com                    \n                           </li>\n            </ul>\n	    <h3>\n                        Instagram                    \n            </h3>\n        <a href=\"https://www.instagram.com/p/B9UK7JWlAmp/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/88236635_2789761927773606_4390829862939958082_n.jpg?_nc_cat=102&#038;_nc_sid=8ae9d6&#038;_nc_ohc=M-bsoll5K5UAX_DagtD&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=c73b388fccd0151abfce32e342a0af08&#038;oe=5F9944A4\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88236635_2789761927773606_4390829862939958082_n.jpg?_nc_cat=102&amp;_nc_sid=8ae9d6&amp;_nc_ohc=M-bsoll5K5UAX_DagtD&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=c73b388fccd0151abfce32e342a0af08&amp;oe=5F9944A4&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK7JWlAmp/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK7JWlAmp/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88236635_2789761927773606_4390829862939958082_n.jpg?_nc_cat=102&amp;_nc_sid=8ae9d6&amp;_nc_ohc=M-bsoll5K5UAX_DagtD&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=c73b388fccd0151abfce32e342a0af08&amp;oe=5F9944A4&quot;}\">\n            Instagram post 17855531329820801\n            	                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17855531329820801\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK6nKFJ_N/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/88273827_531924424121073_6243765551790581589_n.jpg?_nc_cat=101&#038;_nc_sid=8ae9d6&#038;_nc_ohc=K17CXrGh8ukAX9ryj5a&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=a1908bbbff6015f854ed7fb48c823828&#038;oe=5F99E7A1\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88273827_531924424121073_6243765551790581589_n.jpg?_nc_cat=101&amp;_nc_sid=8ae9d6&amp;_nc_ohc=K17CXrGh8ukAX9ryj5a&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=a1908bbbff6015f854ed7fb48c823828&amp;oe=5F99E7A1&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK6nKFJ_N/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK6nKFJ_N/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88273827_531924424121073_6243765551790581589_n.jpg?_nc_cat=101&amp;_nc_sid=8ae9d6&amp;_nc_ohc=K17CXrGh8ukAX9ryj5a&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=a1908bbbff6015f854ed7fb48c823828&amp;oe=5F99E7A1&quot;}\">\n            Instagram post 17874405595578460\n            	                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17874405595578460\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK57Clmxa/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/87864020_716974542166237_1789551972753252691_n.jpg?_nc_cat=104&#038;_nc_sid=8ae9d6&#038;_nc_ohc=n4tK3MREGioAX8y3Jy-&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=305fb1f8247861ac60da5be4ec28a760&#038;oe=5F9C5D7D\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/87864020_716974542166237_1789551972753252691_n.jpg?_nc_cat=104&amp;_nc_sid=8ae9d6&amp;_nc_ohc=n4tK3MREGioAX8y3Jy-&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=305fb1f8247861ac60da5be4ec28a760&amp;oe=5F9C5D7D&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK57Clmxa/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK57Clmxa/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/87864020_716974542166237_1789551972753252691_n.jpg?_nc_cat=104&amp;_nc_sid=8ae9d6&amp;_nc_ohc=n4tK3MREGioAX8y3Jy-&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=305fb1f8247861ac60da5be4ec28a760&amp;oe=5F9C5D7D&quot;}\">\n            Instagram post 17869995694617192\n            	                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17869995694617192\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK4-4FsOa/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/88397669_103117641247180_4768840724066125693_n.jpg?_nc_cat=102&#038;_nc_sid=8ae9d6&#038;_nc_ohc=yrsXeHO5-PgAX_itA2e&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=593064eef7f452e54000a0fb6999a120&#038;oe=5F9BBC56\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88397669_103117641247180_4768840724066125693_n.jpg?_nc_cat=102&amp;_nc_sid=8ae9d6&amp;_nc_ohc=yrsXeHO5-PgAX_itA2e&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=593064eef7f452e54000a0fb6999a120&amp;oe=5F9BBC56&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK4-4FsOa/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK4-4FsOa/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/88397669_103117641247180_4768840724066125693_n.jpg?_nc_cat=102&amp;_nc_sid=8ae9d6&amp;_nc_ohc=yrsXeHO5-PgAX_itA2e&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=593064eef7f452e54000a0fb6999a120&amp;oe=5F9BBC56&quot;}\">\n            Instagram post 18131832721025451\n            	                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 18131832721025451\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK4KflXBJ/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/83530698_785378505204630_5691657077781465827_n.jpg?_nc_cat=111&#038;_nc_sid=8ae9d6&#038;_nc_ohc=gAs7KPKfDVoAX8l8-8R&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=7299a7ac505e4f5c0259599039080612&#038;oe=5F9A5D87\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/83530698_785378505204630_5691657077781465827_n.jpg?_nc_cat=111&amp;_nc_sid=8ae9d6&amp;_nc_ohc=gAs7KPKfDVoAX8l8-8R&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=7299a7ac505e4f5c0259599039080612&amp;oe=5F9A5D87&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK4KflXBJ/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK4KflXBJ/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/83530698_785378505204630_5691657077781465827_n.jpg?_nc_cat=111&amp;_nc_sid=8ae9d6&amp;_nc_ohc=gAs7KPKfDVoAX8l8-8R&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=7299a7ac505e4f5c0259599039080612&amp;oe=5F9A5D87&quot;}\">\n            Instagram post 18130711429055539\n            	                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 18130711429055539\">\n        </a>\n        <a href=\"https://www.instagram.com/p/B9UK2r9lfV2/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-full-res=\"https://scontent.cdninstagram.com/v/t51.2885-15/83868809_639131233575232_7897823760171702886_n.jpg?_nc_cat=110&#038;_nc_sid=8ae9d6&#038;_nc_ohc=ewOIQv-KEV0AX9AqItj&#038;_nc_ht=scontent.cdninstagram.com&#038;oh=6f70875097afb17d9a40d420b63fa659&#038;oe=5F998AFE\" data-img-src-set=\"{&quot;d&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/83868809_639131233575232_7897823760171702886_n.jpg?_nc_cat=110&amp;_nc_sid=8ae9d6&amp;_nc_ohc=ewOIQv-KEV0AX9AqItj&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=6f70875097afb17d9a40d420b63fa659&amp;oe=5F998AFE&quot;,&quot;150&quot;:&quot;https://www.instagram.com/p/B9UK2r9lfV2/media/?size=t&quot;,&quot;320&quot;:&quot;https://www.instagram.com/p/B9UK2r9lfV2/media/?size=m&quot;,&quot;640&quot;:&quot;https://scontent.cdninstagram.com/v/t51.2885-15/83868809_639131233575232_7897823760171702886_n.jpg?_nc_cat=110&amp;_nc_sid=8ae9d6&amp;_nc_ohc=ewOIQv-KEV0AX9AqItj&amp;_nc_ht=scontent.cdninstagram.com&amp;oh=6f70875097afb17d9a40d420b63fa659&amp;oe=5F998AFE&quot;}\">\n            Instagram post 17854083157850505\n            	                    <img src=\"https://demo.casethemes.net/consultio-immigration/wp-content/plugins/instagram-feed/img/placeholder.png\" alt=\"Instagram post 17854083157850505\">\n        </a>\n		2019 © All rights reserved by <a href=\"https://themeforest.net/user/case-themes/portfolio\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">CaseThemes</a>','Footer v.1','','inherit','closed','closed','','20-revision-v1','','','2021-04-03 21:46:47','2021-04-03 21:46:47','',20,'https://dm117.dev34.info/?p=5795',0,'revision','',0),(5800,1,'2021-04-03 21:50:09','2021-04-03 21:50:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:50:09','2021-04-03 21:50:09','',9,'https://dm117.dev34.info/?p=5800',0,'revision','',0),(5801,1,'2021-04-03 21:50:09','2021-04-03 21:50:09','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:50:09','2021-04-03 21:50:09','',9,'https://dm117.dev34.info/?p=5801',0,'revision','',0),(5802,1,'2021-04-03 21:50:32','2021-04-03 21:50:32','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:50:32','2021-04-03 21:50:32','',9,'https://dm117.dev34.info/?p=5802',0,'revision','',0),(5803,1,'2021-04-03 21:50:33','2021-04-03 21:50:33','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:50:33','2021-04-03 21:50:33','',9,'https://dm117.dev34.info/?p=5803',0,'revision','',0),(5804,1,'2021-04-03 21:50:33','2021-04-03 21:50:33','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-04-03 21:50:33','2021-04-03 21:50:33','',9,'https://dm117.dev34.info/?p=5804',0,'revision','',0),(5850,1,'2021-05-09 00:12:42','2021-05-09 00:12:42','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:12:42','2021-05-09 00:12:42','',3493,'https://dm117.dev34.info/?p=5850',0,'revision','',0),(5852,1,'2021-05-09 00:13:28','2021-05-09 00:13:28','','Screen Shot 2021-05-08 at 5.13.04 PM','','inherit','open','closed','','screen-shot-2021-05-08-at-5-13-04-pm','','','2021-05-09 00:13:28','2021-05-09 00:13:28','',3493,'https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png',0,'attachment','image/png',0),(5853,1,'2021-05-09 00:13:35','2021-05-09 00:13:35','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:13:35','2021-05-09 00:13:35','',3493,'https://dm117.dev34.info/?p=5853',0,'revision','',0),(5854,1,'2021-05-09 00:13:35','2021-05-09 00:13:35','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:13:35','2021-05-09 00:13:35','',3493,'https://dm117.dev34.info/?p=5854',0,'revision','',0),(5855,1,'2021-05-09 00:13:36','2021-05-09 00:13:36','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n							<img width=\"594\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:13:36','2021-05-09 00:13:36','',3493,'https://dm117.dev34.info/?p=5855',0,'revision','',0),(5856,1,'2021-05-09 00:13:59','2021-05-09 00:13:59','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n							<img width=\"594\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:13:59','2021-05-09 00:13:59','',3493,'https://dm117.dev34.info/?p=5856',0,'revision','',0),(5857,1,'2021-05-09 00:13:59','2021-05-09 00:13:59','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n							<img width=\"594\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:13:59','2021-05-09 00:13:59','',3493,'https://dm117.dev34.info/?p=5857',0,'revision','',0),(5858,1,'2021-05-09 00:13:59','2021-05-09 00:13:59','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n							<img width=\"594\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:13:59','2021-05-09 00:13:59','',3493,'https://dm117.dev34.info/?p=5858',0,'revision','',0),(5859,1,'2021-05-09 00:15:09','2021-05-09 00:15:09','','Screen Shot 2021-05-08 at 5.14.51 PM','','inherit','open','closed','','screen-shot-2021-05-08-at-5-14-51-pm','','','2021-05-09 00:15:09','2021-05-09 00:15:09','',3493,'https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.14.51-PM.png',0,'attachment','image/png',0),(5863,1,'2021-05-09 00:16:16','2021-05-09 00:16:16','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n							<img width=\"594\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:16:16','2021-05-09 00:16:16','',3493,'https://dm117.dev34.info/?p=5863',0,'revision','',0),(5864,1,'2021-05-09 00:17:49','2021-05-09 00:17:49','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-05-09 00:17:49','2021-05-09 00:17:49','',9,'https://dm117.dev34.info/?p=5864',0,'revision','',0),(5861,1,'2021-05-09 00:16:16','2021-05-09 00:16:16','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n							<img width=\"594\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:16:16','2021-05-09 00:16:16','',3493,'https://dm117.dev34.info/?p=5861',0,'revision','',0),(5862,1,'2021-05-09 00:16:16','2021-05-09 00:16:16','Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n											<a href=\"https://bookshop.org/books/dealers-of-the-macabre/9781645310082\">\n							<img width=\"580\" height=\"202\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM.png 580w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.02.46-PM-300x104.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"246\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-1024x393.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-300x115.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-768x295.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM-600x230.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.07.22-PM.png 1146w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.scribd.com/book/453953311/Dealers-of-the-Macabre\">\n							<img width=\"524\" height=\"118\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM.png 524w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.11.56-PM-300x68.png 300w\" sizes=\"(max-width: 524px) 100vw, 524px\" />								</a>\n											<a href=\"https://www.powells.com/book/dealers-of-the-macabre-9781645310082\">\n							<img width=\"594\" height=\"300\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM.png 594w, https://dm117.dev34.info/wp-content/uploads/2021/05/Screen-Shot-2021-05-08-at-5.13.04-PM-300x152.png 300w\" sizes=\"(max-width: 594px) 100vw, 594px\" />								</a>','About v.3','','inherit','closed','closed','','3493-revision-v1','','','2021-05-09 00:16:16','2021-05-09 00:16:16','',3493,'https://dm117.dev34.info/?p=5862',0,'revision','',0),(5865,1,'2021-05-09 00:17:49','2021-05-09 00:17:49','[rev_slider alias=\"slider-1\" slidertitle=\"Slider 1\"][/rev_slider]		\n                        Available Now!                                \n	    <h3 data-wow-delay=\"ms\">\n            Get Your Copy From One of These Major Retailers!\n            </h3>\n											<a href=\"https://www.amazon.com/dp/B086K4CK9V\">\n							<img width=\"640\" height=\"214\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-1024x343.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-768x257.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM-600x201.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.47.26-PM.png 1112w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.barnesandnoble.com/w/dealers-of-the-macabre-howard-d-brown/1136292629\">\n							<img width=\"640\" height=\"253\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-1024x405.png 1024w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-300x119.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-768x303.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM-600x237.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.43.11-PM.png 1154w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://books.apple.com/us/book/dealers-of-the-macabre/id1505338619\">\n							<img width=\"640\" height=\"213\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM.png 896w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-300x100.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-768x255.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.45.59-PM-600x200.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />								</a>\n											<a href=\"https://www.brooklinebooksmith.com/book/9781645310082\">\n							<img width=\"600\" height=\"240\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM.png 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-1.44.35-PM-300x120.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />								</a>\n										<img width=\"640\" height=\"957\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-685x1024.jpeg 685w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-201x300.jpeg 201w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-768x1148.jpeg 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-1028x1536.jpeg 1028w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover-600x897.jpeg 600w, https://dm117.dev34.info/wp-content/uploads/2021/04/700241Frontcover.jpeg 1338w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Latest Creation of Howard D. Brown                            \n	    <h3 data-wow-delay=\"ms\">\n            Dealers of the Macabre\n            </h3>\n		<p>Dealers of the Macabre takes you to the backyard of the International Intelligence Community.</p><p>Dealers of the Macabre has mystery, suspense, action–adventure, international intrigue, graphic violence, dark sadistic humor, and exciting, explicit adult sexual situations.</p><p>These three classic CIA cases have remained a secret until now.</p><p>Dealers of the Macabre takes you on three very fast-paced action-packed and exciting cases. You will go on assignment with intelligence agents licensed to kill. This original historic epic trilogy intertwines with their on- and off-duty activities, and it gives you an insight to the personalities of these agents.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 1                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Hong Kong Case\n            </h3>\n		<p style=\"text-align: center\">The year was 1974, when a dedicated and loyal secret American CIA agent was handed a very bizarre case.</p>		\n                        Part 2                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Plutonium Caper\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1978. You will go from the Deuxième Bureau (the French Intelligence Agency) in Tangiers, Morocco, to an exciting action-packed assignment in Rio de Janeiro, Brazil.</p>		\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n										<img width=\"640\" height=\"519\" src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png\" alt=\"\" srcset=\"https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM.png 974w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-300x243.png 300w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-768x623.png 768w, https://dm117.dev34.info/wp-content/uploads/2021/04/Screen-Shot-2021-04-03-at-2.17.55-PM-600x487.png 600w\" sizes=\"(max-width: 640px) 100vw, 640px\" />											\n                        Part 3                                        \n	    <h3 data-wow-delay=\"ms\">\n            The Last Case\n            </h3>\n		<p style=\"text-align: center\">This case took place in 1980. This is a true case story of a dedicated and loyal secret American CIA agent who rescued American State Department officials being held hostage by a ruthless, notorious, Communist terrorist organization in Tokyo, Japan.</p>		\n                        Reviews                                        \n	    <h3 data-wow-delay=\"ms\">\n            What Readers Are Saying\n            </h3>\n                                        By far the best book I&#039;ve read about government ops they don&#039;t want you to know about. The most detailed account I&#039;ve come across. I highly recommend this book.                                        \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Lincoln Jones                                        </h3>\n                                        I&#039;ve read similar books, but the way Brown walks you through the chapters was like I was literally living this out in my own life! I will be reading it again.                                         \n                                            <img src=\"https://dm117.dev34.info/wp-content/uploads/2021/04/golden-thumbsup-122x122.jpg\" width=\"122\" height=\"122\" alt=\"golden thumbsup\" title=\"golden thumbsup\" />                                        \n                                        <h3>    \n                                            Sammantha Hunter                                         </h3>','Home','','inherit','closed','closed','','9-revision-v1','','','2021-05-09 00:17:49','2021-05-09 00:17:49','',9,'https://dm117.dev34.info/?p=5865',0,'revision','',0);
/*!40000 ALTER TABLE `wpiy_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_revslider_css`
--

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

--
-- Dumping data for table `wpiy_revslider_css`
--

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

--
-- Table structure for table `wpiy_revslider_css_bkp`
--

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

--
-- Dumping data for table `wpiy_revslider_css_bkp`
--

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

--
-- Table structure for table `wpiy_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wpiy_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_revslider_layer_animations`
--

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

--
-- Table structure for table `wpiy_revslider_layer_animations_bkp`
--

DROP TABLE IF EXISTS `wpiy_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `wpiy_revslider_navigations`
--

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

--
-- Dumping data for table `wpiy_revslider_navigations`
--

LOCK TABLES `wpiy_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wpiy_revslider_navigations` DISABLE KEYS */;
INSERT INTO `wpiy_revslider_navigations` VALUES (1,'Case Theme Number','case_theme_number','bullets','','','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":\"\",\"presets\":\"\",\"version\":\"6.0.0\"}');
/*!40000 ALTER TABLE `wpiy_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_revslider_navigations_bkp`
--

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

--
-- Dumping data for table `wpiy_revslider_navigations_bkp`
--

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

--
-- Table structure for table `wpiy_revslider_sliders`
--

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

--
-- Dumping data for table `wpiy_revslider_sliders`
--

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

--
-- Table structure for table `wpiy_revslider_sliders_bkp`
--

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

--
-- Dumping data for table `wpiy_revslider_sliders_bkp`
--

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

--
-- Table structure for table `wpiy_revslider_slides`
--

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

--
-- Dumping data for table `wpiy_revslider_slides`
--

LOCK TABLES `wpiy_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wpiy_revslider_slides` DISABLE KEYS */;
INSERT INTO `wpiy_revslider_slides` VALUES (1,1,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#000000\",\"image\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-slider-01.jpg\",\"imageId\":5370,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":710,\"imageRatio\":2.704225352112676006299807340838015079498291015625},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"duration\":\"8000ms\",\"fitStart\":\"115%\"}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"773px\",\"e\":true},\"t\":{\"v\":\"742px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"310px\",\"e\":true},\"n\":{\"v\":\"310px\"},\"t\":{\"v\":\"240px\",\"e\":true},\"m\":{\"v\":\"240px\",\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"t\":{\"e\":true}},\"minHeight\":{\"t\":{\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"23px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-20px\",\"e\":true},\"n\":{\"v\":\"-20px\"},\"t\":{\"e\":true},\"m\":{\"v\":\"-90px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":13},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"opacity\":1},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Dealers of the Macabre\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"n\":{\"v\":\"615px\",\"e\":true},\"t\":{\"v\":\"472px\",\"e\":true},\"m\":{\"v\":\"472px\"}},\"height\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"t\":{\"e\":true}},\"minHeight\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"v\":\"1px\"}},\"y\":{\"d\":{\"v\":\"24px\",\"e\":true},\"n\":{\"v\":\"24px\"},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"v\":\"-12px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\",\"e\":true},\"m\":{\"v\":\"100%\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"use\":true,\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"use\":true,\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":\"1200\",\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"startRelative\":7900,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"64px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"60px\",\"e\":true},\"t\":{\"v\":\"48px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"Visit the backyard of the International Intelligence Community. \\n\\nBOOK IS AVAILABLE NOW!\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"614px\",\"e\":true},\"n\":{\"v\":\"614px\"},\"t\":{\"v\":\"464px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"t\":{\"e\":true}},\"minHeight\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\"},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"v\":\"2px\"}},\"y\":{\"d\":{\"v\":\"154px\",\"e\":true},\"n\":{\"v\":\"154px\"},\"t\":{\"v\":\"105px\",\"e\":true},\"m\":{\"v\":\"76px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\",\"e\":true},\"m\":{\"v\":\"100%\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"use\":true,\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"use\":true,\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":\"1200\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,20],\"e\":true},\"n\":{\"v\":[0,0,0,20],\"e\":false},\"t\":{\"v\":[0,0,0,19],\"e\":true},\"m\":{\"v\":[0,0,0,19],\"e\":false}},\"fontFamily\":\"Nunito Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"19px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"borderColor\":\"#ff0040\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[0,0,0,\"5px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"<span class=\\\"btn btn-icon-fixed-right\\\">Learn More <i class=\\\"fac fac-th-large\\\"><\\/i><\\/span>\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true}},\"height\":{\"t\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"t\":{\"e\":true}},\"minHeight\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"215px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"e\":true}},\"zIndex\":12},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\",\"e\":true},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true,\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"use\":true,\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":1200,\"start\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"startRelative\":7300,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"15\",\"e\":true},\"m\":{\"v\":\"15\"}},\"letterSpacing\":{\"t\":{\"e\":true}},\"lineHeight\":{\"t\":{\"v\":\"15\",\"e\":true},\"m\":{\"v\":\"15\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"scroll_under\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"\",\"action_easing\":\"power1.inOut\",\"action_speed\":\"1000ms\"}]},\"type\":\"text\"},\"5\":{\"text\":\"By Howard D. Brown\",\"alias\":\"Copy  text-1\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true}},\"height\":{\"t\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"t\":{\"e\":true}},\"minHeight\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"3px\",\"e\":true},\"n\":{\"v\":\"3px\"},\"t\":{\"v\":\"-1px\",\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"87px\"},\"t\":{\"v\":\"42px\",\"e\":true},\"m\":{\"v\":\"27px\",\"e\":true}},\"horizontal\":{\"d\":{\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\",\"e\":true},\"m\":{\"v\":\"100%\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"use\":true,\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"use\":true,\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"speed\":\"1200\",\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"startRelative\":7900,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"34px\",\"e\":true},\"n\":{\"v\":\"34px\"},\"t\":{\"v\":\"38px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50px\",\"e\":true},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"48px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"6\":{\"text\":\"\",\"alias\":\"Image-6\",\"uid\":6,\"media\":{\"imageUrl\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2021\\/04\\/700241Frontcover.jpeg\",\"imageId\":5728,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"359px\",\"e\":true},\"n\":{\"v\":\"296px\"},\"t\":{\"v\":\"224px\"},\"m\":{\"v\":\"158px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"537px\",\"e\":true},\"n\":{\"v\":\"443px\"},\"t\":{\"v\":\"336px\"},\"m\":{\"v\":\"236px\",\"e\":true}},\"originalWidth\":1338,\"originalHeight\":2000,\"aspectRatio\":{\"d\":{\"v\":0.669000000000000039079850466805510222911834716796875},\"n\":{\"v\":0.669000000000000039079850466805510222911834716796875},\"t\":{\"v\":0.669000000000000039079850466805510222911834716796875},\"m\":{\"v\":0.669000000000000039079850466805510222911834716796875}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"860px\",\"e\":true},\"n\":{\"v\":\"684px\",\"e\":true},\"t\":{\"v\":\"519px\"},\"m\":{\"v\":\"169px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"114px\",\"e\":true},\"n\":{\"v\":\"137px\",\"e\":true},\"t\":{\"v\":\"104px\"},\"m\":{\"v\":\"238px\",\"e\":true}},\"horizontal\":{\"n\":{\"e\":true},\"m\":{\"e\":true}},\"vertical\":{\"n\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.6\"}'),(2,1,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-slider-02.jpg\",\"imageId\":5373,\"imageLib\":\"medialibrary\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"set\":true,\"duration\":\"8000ms\",\"fitStart\":\"110%\"}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"800px\",\"e\":true},\"n\":{\"v\":\"800px\"},\"t\":{\"v\":\"800px\"},\"m\":{\"v\":\"400px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"310px\",\"e\":true},\"n\":{\"v\":\"310px\"},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"240px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\"},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"24px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-20px\",\"e\":true},\"n\":{\"v\":\"-20px\"},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\"},\"1\":{\"text\":\"Taking courses to\\nmake easier\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-13px\",\"e\":true},\"n\":{\"v\":\"-13px\"},\"t\":{\"v\":\"-13px\"},\"m\":{\"v\":\"-12px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":\"1200\",\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7900,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"64px\",\"e\":true},\"n\":{\"v\":\"64px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"If you\\u2019re a newcomer to Canada, free immigrant services including settlement support.\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"430px\",\"e\":true},\"n\":{\"v\":\"430px\"},\"t\":{\"v\":\"430px\"},\"m\":{\"v\":\"300px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"76px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":\"1200\",\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,20,0,0],\"e\":true},\"n\":{\"v\":[0,20,0,0],\"e\":false},\"t\":{\"v\":[0,20,0,0],\"e\":false},\"m\":{\"v\":[0,20,0,0],\"e\":false}},\"fontFamily\":\"Nunito Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"16px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"borderColor\":\"#ff0040\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[0,\"5px\",0,\"0px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"<span class=\\\"btn btn-icon-fixed-right\\\">Book an appionment<i class=\\\"fac fac-th-large\\\"><\\/i><\\/span>\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"right\",\"e\":true},\"n\":{\"v\":\"right\"},\"t\":{\"v\":\"right\"},\"m\":{\"v\":\"right\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":\"100%\"},\"n\":{\"v\":\"100%\"},\"t\":{\"v\":\"100%\"},\"m\":{\"v\":\"100%\"}}},\"mask\":{\"use\":true},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"mask\":{\"use\":true},\"timeline\":{\"speed\":1200,\"start\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1200}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7300,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact\\/\"}]},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.6\"}'),(3,1,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/dm117.dev34.info\\/wp-content\\/uploads\\/2020\\/10\\/bg-slider-03.jpg\",\"imageId\":5374,\"imageLib\":\"medialibrary\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"publish\":{\"state\":\"unpublished\"},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"panzoom\":{\"set\":true,\"duration\":\"8000ms\",\"fitStart\":\"110%\"}}','{\"0\":{\"text\":\"\",\"alias\":\"Group-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1000px\",\"e\":true},\"n\":{\"v\":\"1000px\"},\"t\":{\"v\":\"1000px\"},\"m\":{\"v\":\"400px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"310px\",\"e\":true},\"n\":{\"v\":\"310px\"},\"t\":{\"v\":\"250px\",\"e\":true},\"m\":{\"v\":\"240px\",\"e\":true}},\"originalWidth\":\"300px\",\"originalHeight\":\"180px\",\"aspectRatio\":{\"d\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"n\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"t\":{\"v\":1.6666666666666667406815349750104360282421112060546875},\"m\":{\"v\":1.6666666666666667406815349750104360282421112060546875}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-20px\",\"e\":true},\"n\":{\"v\":\"-20px\"},\"t\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":11},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"opacity\":1},\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":8700,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"group\"},\"1\":{\"text\":\"We provide a supportive\\nenvironment to Canada\",\"alias\":\"Text-1\",\"uid\":1,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"-13px\",\"e\":true},\"n\":{\"v\":\"-13px\"},\"t\":{\"v\":\"-13px\"},\"m\":{\"v\":\"-12px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":8},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":800,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7900,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Poppins\",\"fontSize\":{\"d\":{\"v\":\"64px\",\"e\":true},\"n\":{\"v\":\"64px\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"lineHeight\":{\"d\":{\"v\":\"70px\",\"e\":true},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"If you\\u2019re a newcomer to Canada, free immigrant services including settlement support.\",\"alias\":\"Text-2\",\"uid\":2,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"430px\",\"e\":true},\"n\":{\"v\":\"430px\"},\"t\":{\"v\":\"430px\"},\"m\":{\"v\":\"260px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"150px\",\"e\":true},\"n\":{\"v\":\"150px\"},\"t\":{\"v\":\"104px\",\"e\":true},\"m\":{\"v\":\"76px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":9},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":1100,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7600,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1100},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Nunito Sans\",\"fontSize\":{\"d\":{\"v\":\"18px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"18px\"},\"m\":{\"v\":\"16px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"29px\"},\"t\":{\"v\":\"29px\"},\"m\":{\"v\":\"26px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"borderColor\":\"#ff0040\",\"borderRadius\":{\"v\":[0,0,0,0]},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[0,0,0,\"0px\"],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"<span class=\\\"btn btn-icon-fixed-right\\\">Book an appionment<i class=\\\"fac fac-th-large\\\"><\\/i><\\/span>\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"vertical\":{\"d\":{\"v\":\"bottom\",\"e\":true},\"n\":{\"v\":\"bottom\"},\"t\":{\"v\":\"bottom\"},\"m\":{\"v\":\"bottom\"}},\"zIndex\":10},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"responsiveOffset\":false},\"group\":{\"puid\":\"0\",\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"y\":{\"d\":{\"v\":50},\"n\":{\"v\":50},\"t\":{\"v\":50},\"m\":{\"v\":50}}},\"timeline\":{\"endWithSlide\":false,\"alias\":\"Anim From\"}},\"frame_1\":{\"timeline\":{\"speed\":1000,\"start\":1400,\"endWithSlide\":false,\"alias\":\"Anim To\",\"frameLength\":1000}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"startRelative\":7300,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":1400},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"lineHeight\":{\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"nofollow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/demo.casethemes.net\\/consultio-immigration\\/contact\\/\"}]},\"type\":\"text\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\",\"version\":\"6.4.0\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\",\"version\":\"6.4.0\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\",\"version\":\"6.4.0\"}}','{\"version\":\"6.4.6\"}');
/*!40000 ALTER TABLE `wpiy_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_revslider_slides_bkp`
--

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

--
-- Dumping data for table `wpiy_revslider_slides_bkp`
--

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

--
-- Table structure for table `wpiy_revslider_static_slides`
--

DROP TABLE IF EXISTS `wpiy_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `slider_id_index` (`slider_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_revslider_static_slides`
--

LOCK TABLES `wpiy_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wpiy_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wpiy_revslider_static_slides` VALUES (1,1,'{\"version\":\"6.4.0\",\"bg\":{\"image\":\"\"},\"image\":\"\"}','[]','{\"version\":\"6.4.0\"}');
/*!40000 ALTER TABLE `wpiy_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_revslider_static_slides_bkp`
--

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

--
-- Dumping data for table `wpiy_revslider_static_slides_bkp`
--

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

--
-- Table structure for table `wpiy_sbi_instagram_feed_locator`
--

DROP TABLE IF EXISTS `wpiy_sbi_instagram_feed_locator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_sbi_instagram_feed_locator` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_id` bigint(20) unsigned NOT NULL,
  `html_location` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'unknown',
  `shortcode_atts` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_update` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`),
  KEY `post_id` (`post_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_sbi_instagram_feed_locator`
--

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

--
-- Table structure for table `wpiy_sbi_instagram_feeds_posts`
--

DROP TABLE IF EXISTS `wpiy_sbi_instagram_feeds_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_sbi_instagram_feeds_posts` (
  `record_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id` int(11) unsigned NOT NULL,
  `instagram_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `feed_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `hashtag` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`record_id`),
  KEY `hashtag` (`hashtag`(100)),
  KEY `feed_id` (`feed_id`(100))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_sbi_instagram_feeds_posts`
--

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

--
-- Table structure for table `wpiy_sbi_instagram_posts`
--

DROP TABLE IF EXISTS `wpiy_sbi_instagram_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_sbi_instagram_posts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created_on` datetime DEFAULT NULL,
  `instagram_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `time_stamp` datetime DEFAULT NULL,
  `top_time_stamp` datetime DEFAULT NULL,
  `json_data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `media_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sizes` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `aspect_ratio` decimal(4,2) NOT NULL DEFAULT '0.00',
  `images_done` tinyint(1) NOT NULL DEFAULT '0',
  `last_requested` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_sbi_instagram_posts`
--

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

--
-- Table structure for table `wpiy_term_relationships`
--

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

--
-- Dumping data for table `wpiy_term_relationships`
--

LOCK TABLES `wpiy_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpiy_term_relationships` DISABLE KEYS */;
INSERT INTO `wpiy_term_relationships` VALUES (1214,31,0),(1217,31,0),(2331,25,0),(2439,36,0),(2440,12,0),(2441,38,0),(2442,22,0),(3872,31,0),(3876,31,0),(5333,25,0),(5543,25,0),(5544,40,0),(5828,31,0),(5562,25,0),(5582,25,0),(5583,40,0),(5584,41,0),(5585,41,0),(5586,40,0),(5587,41,0),(5588,46,0),(5589,46,0),(5590,46,0),(5591,46,0),(5592,40,0),(5593,45,0),(5594,45,0),(5595,45,0),(5596,45,0),(5597,45,0),(5598,45,0),(5599,45,0),(569,14,0),(571,35,0),(573,14,0),(575,34,0),(577,19,0),(579,35,0),(581,14,0),(1738,35,0),(1740,34,0),(1742,14,0),(1766,35,0),(159,6,0),(156,4,0),(156,6,0),(156,7,0),(156,3,0),(159,2,0),(159,7,0),(159,8,0),(161,1,0),(161,4,0),(161,6,0),(161,8,0),(166,1,0),(164,4,0),(164,5,0),(164,6,0),(164,3,0),(166,4,0),(166,5,0),(166,6,0),(166,7,0),(166,8,0),(583,19,0),(169,4,0),(169,5,0),(169,6,0),(169,2,0),(758,10,0),(758,33,0),(758,32,0),(771,10,0),(771,33,0),(771,32,0),(772,11,0),(772,32,0),(773,9,0),(773,37,0),(773,32,0),(774,10,0),(774,33,0),(774,32,0),(775,9,0),(775,33,0),(775,32,0),(776,10,0),(776,33,0),(776,32,0),(777,11,0),(777,32,0),(778,10,0),(778,33,0),(778,30,0),(778,32,0),(780,32,0),(780,33,0),(780,37,0),(781,11,0),(781,32,0),(782,32,0),(782,33,0),(4931,21,0),(446,15,0),(448,15,0),(645,21,0),(647,21,0),(649,15,0),(651,15,0),(2625,15,0),(2627,15,0),(4171,13,0),(4174,13,0),(4177,13,0),(5825,31,0),(5600,40,0),(5601,40,0),(5602,40,0),(5603,40,0),(5604,40,0),(5605,44,0),(5606,44,0),(5607,44,0),(5608,40,0),(5609,40,0),(5610,40,0),(5611,40,0),(5612,40,0),(5613,40,0),(5614,40,0),(5615,40,0),(5616,40,0),(5617,40,0),(5618,40,0),(5619,40,0),(5620,40,0),(5621,40,0),(5622,40,0),(5623,40,0),(5624,40,0),(5625,40,0),(5626,40,0),(5627,40,0),(5628,44,0),(5629,44,0),(5630,44,0),(5631,40,0),(5632,40,0),(5633,40,0),(5634,40,0),(5635,40,0),(5636,40,0),(5637,47,0),(5638,47,0),(5639,47,0),(5640,47,0),(5641,47,0),(5642,40,0),(5643,41,0),(5644,41,0),(5645,41,0),(5646,41,0),(5647,41,0),(5648,41,0),(5649,41,0),(5650,41,0),(5651,42,0),(5652,42,0),(5653,42,0),(5654,42,0),(5655,42,0),(5656,42,0),(5657,42,0),(5658,42,0),(5659,42,0),(5660,42,0),(5661,42,0),(5662,42,0),(5663,42,0),(5664,42,0),(5665,42,0),(5666,41,0),(5667,41,0),(5668,41,0),(5669,41,0),(5670,41,0),(5671,41,0),(5672,41,0),(5673,41,0),(5674,41,0),(5675,41,0),(5676,41,0),(5677,41,0),(5678,41,0),(5679,41,0),(5680,42,0),(5681,42,0),(5682,42,0),(5683,42,0),(5684,40,0),(5685,40,0),(5686,40,0),(5687,40,0),(5688,40,0),(5689,40,0),(5690,40,0),(5691,40,0),(5692,40,0),(5693,40,0),(5694,40,0),(5695,40,0),(5696,40,0),(5697,40,0),(5698,40,0),(5699,40,0),(5700,40,0),(5701,40,0),(5702,40,0),(5703,40,0),(5704,40,0),(5705,40,0),(5706,40,0),(5707,40,0),(5708,41,0),(5709,42,0),(5710,42,0),(5711,42,0),(5712,42,0),(5713,42,0),(5714,42,0),(5715,42,0),(5716,42,0),(5717,41,0),(5718,41,0),(5719,41,0),(5720,41,0),(5721,40,0),(5722,41,0),(5723,41,0),(5724,40,0),(5725,40,0),(5784,48,0),(5785,48,0),(5786,48,0),(5788,48,0);
/*!40000 ALTER TABLE `wpiy_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_term_taxonomy`
--

DROP TABLE IF EXISTS `wpiy_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_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=MyISAM AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_term_taxonomy`
--

LOCK TABLES `wpiy_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpiy_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpiy_term_taxonomy` VALUES (1,1,'category','',0,2),(2,2,'category','',0,2),(3,3,'category','',0,2),(4,4,'post_tag','',0,5),(5,5,'post_tag','',0,3),(6,6,'post_tag','',0,6),(7,7,'post_tag','',0,3),(8,8,'post_tag','',0,3),(9,9,'product_cat','',0,2),(10,10,'product_cat','',0,5),(11,11,'product_cat','',0,3),(12,12,'case-study-category','',0,1),(13,13,'service-category','',0,3),(14,14,'portfolio-category','',0,4),(15,15,'service-category','',0,6),(16,16,'product_visibility','',0,0),(17,17,'product_visibility','',0,0),(18,18,'product_type','',0,0),(19,19,'portfolio-category','',0,2),(20,20,'product_visibility','',0,0),(21,21,'service-category','',0,3),(22,22,'case-study-category','',0,1),(23,23,'product_type','',0,0),(24,24,'product_visibility','',0,0),(25,25,'elementor_library_type','',0,5),(26,26,'product_visibility','',0,0),(27,27,'product_visibility','',0,0),(28,28,'product_visibility','',0,0),(29,29,'product_visibility','',0,0),(30,30,'product_visibility','',0,1),(31,31,'elementor_library_type','',0,6),(32,32,'product_type','',0,12),(33,33,'product_cat','',0,8),(34,34,'portfolio-category','',0,2),(35,35,'portfolio-category','',0,4),(36,36,'case-study-category','',0,1),(37,37,'product_cat','',0,2),(38,38,'case-study-category','',0,1),(39,39,'product_type','',0,0),(40,40,'nav_menu','',0,63),(41,41,'nav_menu','',0,32),(42,42,'nav_menu','',0,27),(43,43,'nav_menu','',0,0),(44,44,'nav_menu','',0,6),(45,45,'nav_menu','',0,7),(46,46,'nav_menu','',0,4),(47,47,'nav_menu','',0,5),(48,48,'nav_menu','',0,4);
/*!40000 ALTER TABLE `wpiy_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_termmeta`
--

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

--
-- Dumping data for table `wpiy_termmeta`
--

LOCK TABLES `wpiy_termmeta` WRITE;
/*!40000 ALTER TABLE `wpiy_termmeta` DISABLE KEYS */;
INSERT INTO `wpiy_termmeta` VALUES (1,9,'order','0'),(2,10,'order','0'),(3,11,'order','0'),(4,33,'order','0'),(5,37,'order','0'),(6,10,'product_count_product_cat','5'),(7,33,'product_count_product_cat','8'),(8,11,'product_count_product_cat','3'),(9,9,'product_count_product_cat','2'),(10,37,'product_count_product_cat','2');
/*!40000 ALTER TABLE `wpiy_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_terms`
--

DROP TABLE IF EXISTS `wpiy_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_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=MyISAM AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_terms`
--

LOCK TABLES `wpiy_terms` WRITE;
/*!40000 ALTER TABLE `wpiy_terms` DISABLE KEYS */;
INSERT INTO `wpiy_terms` VALUES (1,'Business','business',0),(2,'Creative','creative',0),(3,'Strategy','strategy',0),(4,'Builder','builder',0),(5,'Cloud','cloud',0),(6,'Map','map',0),(7,'Tower','tower',0),(8,'Truck','truck',0),(9,'Accessories','accessories',0),(10,'Axes &amp; Picks','axes-picks',0),(11,'Bricklaying Tools','bricklaying-tools',0),(12,'Business','business',0),(13,'Business','business',0),(14,'Coaching','coaching',0),(15,'Corporate','corporate',0),(16,'exclude-from-catalog','exclude-from-catalog',0),(17,'exclude-from-search','exclude-from-search',0),(18,'external','external',0),(19,'Facilitation','facilitation',0),(20,'featured','featured',0),(21,'Finance','finance',0),(22,'Financial','financial',0),(23,'grouped','grouped',0),(24,'outofstock','outofstock',0),(25,'page','page',0),(26,'rated-1','rated-1',0),(27,'rated-2','rated-2',0),(28,'rated-3','rated-3',0),(29,'rated-4','rated-4',0),(30,'rated-5','rated-5',0),(31,'section','section',0),(32,'simple','simple',0),(33,'Spirit Levels','spirit-levels',0),(34,'Stakeholder relations','stakeholder-relations',0),(35,'Strategy','strategy',0),(36,'Strategy','strategy',0),(37,'Surgery','surgery',0),(38,'Tax Management','tax-management',0),(39,'variable','variable',0),(40,'Main Menu','main-menu',0),(41,'Main Menu Left','main-menu-left',0),(42,'Main Menu Right','main-menu-right',0),(43,'Menu Courses','menu-courses',0),(44,'Menu Footer Links','menu-footer-links',0),(45,'Menu One Page','menu-one-page',0),(46,'Menu Secondary','menu-secondary',0),(47,'Menu Services','menu-services',0),(48,'Main Updated 1','main-updated-1',0);
/*!40000 ALTER TABLE `wpiy_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_usermeta`
--

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

--
-- Dumping data for table `wpiy_usermeta`
--

LOCK TABLES `wpiy_usermeta` WRITE;
/*!40000 ALTER TABLE `wpiy_usermeta` DISABLE KEYS */;
INSERT INTO `wpiy_usermeta` VALUES (1,1,'nickname','Admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpiy_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpiy_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"f206a7aecf4cce1b2a353c2c1c934ce0d9bb6e69159108e76de2e0175dee97a3\";a:4:{s:10:\"expiration\";i:1620690503;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:78.0) Gecko/20100101 Firefox/78.0\";s:5:\"login\";i:1620517703;}}'),(17,1,'wpiy_dashboard_quick_press_last_post_id','5806'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"64.187.165.0\";}'),(19,1,'booked_phone',''),(20,1,'last_update','1617481145'),(21,1,'woocommerce_admin_activity_panel_inbox_last_read','1617481168214'),(22,1,'wc_last_active','1620518400'),(23,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),(24,1,'wpiy_user-settings','libraryContent=browse&editor=tinymce&hidetb=1'),(25,1,'wpiy_user-settings-time','1617485473'),(26,1,'nav_menu_recently_edited','48'),(27,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(28,1,'metaboxhidden_nav-menus','a:15:{i:0;s:23:\"add-post-type-portfolio\";i:1;s:21:\"add-post-type-service\";i:2;s:24:\"add-post-type-case-study\";i:3;s:21:\"add-post-type-courses\";i:4;s:20:\"add-post-type-footer\";i:5;s:28:\"add-post-type-e-landing-page\";i:6;s:21:\"add-post-type-product\";i:7;s:12:\"add-post_tag\";i:8;s:15:\"add-post_format\";i:9;s:22:\"add-portfolio-category\";i:10;s:20:\"add-service-category\";i:11;s:23:\"add-case-study-category\";i:12;s:15:\"add-product_cat\";i:13;s:15:\"add-product_tag\";i:14;s:27:\"add-booked_custom_calendars\";}'),(29,1,'_order_count','0'),(31,1,'_woocommerce_tracks_anon_id','woo:miwctrjy1MsT1rN0MWH2FsRB');
/*!40000 ALTER TABLE `wpiy_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_users`
--

DROP TABLE IF EXISTS `wpiy_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_users`
--

LOCK TABLES `wpiy_users` WRITE;
/*!40000 ALTER TABLE `wpiy_users` DISABLE KEYS */;
INSERT INTO `wpiy_users` VALUES (1,'Admin','$P$B0AvGaXtwgxMhCyDMRZXueSgS3yO/i1','admin','alex@inspirable.com','https://dm117.dev34.info','2021-04-03 20:14:22','',0,'Admin');
/*!40000 ALTER TABLE `wpiy_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_wc_admin_note_actions`
--

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

--
-- Dumping data for table `wpiy_wc_admin_note_actions`
--

LOCK TABLES `wpiy_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpiy_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpiy_wc_admin_note_actions` VALUES (1,1,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0,''),(2,2,'open-marketing-hub','Open marketing hub','https://dm117.dev34.info/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),(529,3,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,''),(530,4,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,''),(531,5,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),(532,6,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),(533,7,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),(534,8,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),(535,9,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),(536,10,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,''),(537,11,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,''),(538,12,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,''),(539,13,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,''),(540,13,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,''),(541,14,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,''),(542,15,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,''),(543,16,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,''),(544,17,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,''),(19,18,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,''),(36,19,'learn-more','Learn more','https://docs.woocommerce.com/document/variable-product/?utm_source=inbox','actioned',0,''),(37,20,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned',0,''),(38,21,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback'),(39,22,'day-after-first-product','Learn more','https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox','actioned',0,''),(56,23,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,''),(89,24,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,''),(138,25,'share-feedback','Share feedback','https://automattic.survey.fm/store-setup-survey','actioned',0,''),(139,26,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback'),(140,26,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback'),(545,27,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,'');
/*!40000 ALTER TABLE `wpiy_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_wc_admin_notes`
--

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

--
-- Dumping data for table `wpiy_wc_admin_notes`
--

LOCK TABLES `wpiy_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpiy_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpiy_wc_admin_notes` VALUES (1,'wc-admin-onboarding-email-marketing','info','en_US','Sign up for tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(2,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','{}','unactioned','woocommerce-admin','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(3,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(4,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(5,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(6,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(7,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(8,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(9,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(10,'your-first-product','info','en_US','Your first product','That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(11,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(12,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(13,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(14,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(15,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(16,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(17,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(18,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-04-03 20:18:52',NULL,0,'plain','',0,'info'),(19,'wc-admin-learn-more-about-variable-products','info','en_US','Learn more about variable products','Variable products are a powerful product type that lets you offer a set of variations on a product, with control over prices, stock, image and more for each variation. They can be used for a product like a shirt, where you can offer a large, medium and small and in different colors.','{}','unactioned','woocommerce-admin','2021-04-03 20:20:58',NULL,0,'plain','',0,'info'),(20,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2021-04-04 20:31:50',NULL,0,'plain','',0,'info'),(21,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week. We\'re here to help your business succeed! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-04-04 20:31:50',NULL,0,'plain','',0,'info'),(22,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2021-04-04 20:31:50',NULL,0,'plain','',0,'info'),(23,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2021-04-06 18:50:56',NULL,0,'plain','',0,'info'),(24,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2021-04-09 06:20:24',NULL,0,'plain','',0,'info'),(25,'wc-admin-store-notice-giving-feedback-2','info','en_US','You\'re invited to share your experience','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','{}','unactioned','woocommerce-admin','2021-04-12 18:28:37',NULL,0,'plain','',0,'info'),(26,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-04-12 18:28:37',NULL,0,'plain','',0,'info'),(27,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2021-04-16 02:27:46',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wpiy_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpiy_wc_category_lookup`
--

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

--
-- Dumping data for table `wpiy_wc_category_lookup`
--

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

--
-- Table structure for table `wpiy_wc_customer_lookup`
--

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

--
-- Dumping data for table `wpiy_wc_customer_lookup`
--

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

--
-- Table structure for table `wpiy_wc_download_log`
--

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

--
-- Dumping data for table `wpiy_wc_download_log`
--

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

--
-- Table structure for table `wpiy_wc_order_coupon_lookup`
--

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

--
-- Dumping data for table `wpiy_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wpiy_wc_order_product_lookup`
--

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

--
-- Dumping data for table `wpiy_wc_order_product_lookup`
--

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

--
-- Table structure for table `wpiy_wc_order_stats`
--

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

--
-- Dumping data for table `wpiy_wc_order_stats`
--

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

--
-- Table structure for table `wpiy_wc_order_tax_lookup`
--

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

--
-- Dumping data for table `wpiy_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wpiy_wc_product_meta_lookup`
--

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

--
-- Dumping data for table `wpiy_wc_product_meta_lookup`
--

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

--
-- Table structure for table `wpiy_wc_reserved_stock`
--

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

--
-- Dumping data for table `wpiy_wc_reserved_stock`
--

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

--
-- Table structure for table `wpiy_wc_tax_rate_classes`
--

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

--
-- Dumping data for table `wpiy_wc_tax_rate_classes`
--

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

--
-- Table structure for table `wpiy_wc_webhooks`
--

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

--
-- Dumping data for table `wpiy_wc_webhooks`
--

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

--
-- Table structure for table `wpiy_woocommerce_api_keys`
--

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

--
-- Dumping data for table `wpiy_woocommerce_api_keys`
--

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

--
-- Table structure for table `wpiy_woocommerce_attribute_taxonomies`
--

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

--
-- Dumping data for table `wpiy_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wpiy_woocommerce_downloadable_product_permissions`
--

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

--
-- Dumping data for table `wpiy_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wpiy_woocommerce_log`
--

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

--
-- Dumping data for table `wpiy_woocommerce_log`
--

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

--
-- Table structure for table `wpiy_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wpiy_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wpiy_woocommerce_order_items`
--

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

--
-- Dumping data for table `wpiy_woocommerce_order_items`
--

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

--
-- Table structure for table `wpiy_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wpiy_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wpiy_woocommerce_payment_tokens`
--

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

--
-- Dumping data for table `wpiy_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wpiy_woocommerce_sessions`
--

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

--
-- Dumping data for table `wpiy_woocommerce_sessions`
--

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

--
-- Table structure for table `wpiy_woocommerce_shipping_zone_locations`
--

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

--
-- Dumping data for table `wpiy_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wpiy_woocommerce_shipping_zone_methods`
--

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

--
-- Dumping data for table `wpiy_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wpiy_woocommerce_shipping_zones`
--

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

--
-- Dumping data for table `wpiy_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wpiy_woocommerce_tax_rate_locations`
--

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

--
-- Dumping data for table `wpiy_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wpiy_woocommerce_tax_rates`
--

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

--
-- Dumping data for table `wpiy_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wpiy_yith_wcwl`
--

DROP TABLE IF EXISTS `wpiy_yith_wcwl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_yith_wcwl` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `prod_id` bigint(20) NOT NULL,
  `quantity` int(11) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `wishlist_id` bigint(20) DEFAULT NULL,
  `position` int(11) DEFAULT '0',
  `original_price` decimal(9,3) DEFAULT NULL,
  `original_currency` char(3) DEFAULT NULL,
  `dateadded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `on_sale` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `prod_id` (`prod_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_yith_wcwl`
--

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

--
-- Table structure for table `wpiy_yith_wcwl_lists`
--

DROP TABLE IF EXISTS `wpiy_yith_wcwl_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpiy_yith_wcwl_lists` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `session_id` varchar(255) DEFAULT NULL,
  `wishlist_slug` varchar(200) NOT NULL,
  `wishlist_name` text,
  `wishlist_token` varchar(64) NOT NULL,
  `wishlist_privacy` tinyint(1) NOT NULL DEFAULT '0',
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  `dateadded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `expiration` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `wishlist_token` (`wishlist_token`),
  KEY `wishlist_slug` (`wishlist_slug`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpiy_yith_wcwl_lists`
--

LOCK TABLES `wpiy_yith_wcwl_lists` WRITE;
/*!40000 ALTER TABLE `wpiy_yith_wcwl_lists` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpiy_yith_wcwl_lists` 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 2021-05-08 17:34:43
